Article Rewrite API

Public

API Details

The Article Rewrite API is a powerful tool designed to transform existing articles to suit specific audience types. It takes the original title, content, and target audience as inputs, and returns a rewritten version of the article tailored to the specified audience. This API uses advanced natural language processing techniques to adjust the tone, vocabulary, and complexity of the content, making it more accessible and engaging for the intended readers. It's particularly useful for content creators, marketers, and educators who need to adapt their material for different demographics or expertise levels.

Request Schema

PropertyTypeRequiredDescription
title
string
required
The original title of the article
content
string
required
The full text content of the original article
audience_type
string
required
The target audience for the rewritten article (e.g., 'children', 'teenagers', 'adults', 'experts')

Response Schema

PropertyTypeRequiredDescription
rewritten_title
string
required
The rewritten title adapted for the specified audience
rewritten_content
string
required
The rewritten content of the article adapted for the specified audience

API Metadata

ID648
Version
v1
Method
post
Endpoint

/article-rewrite-api/v1

Tags
content generation
article rewriting
text transformation
audience adaptation

API Examples

Example Request
{
  "title": "The Impact of Climate Change on Global Ecosystems",
  "content": "Climate change is causing significant alterations to ecosystems worldwide. Rising temperatures, changing precipitation patterns, and extreme weather events are disrupting the delicate balance of nature. This has led to shifts in species distribution, changes in phenology, and in some cases, extinction of vulnerable species. The interconnectedness of ecosystems means that these changes have far-reaching consequences, affecting biodiversity, ecosystem services, and ultimately, human well-being.",
  "audience_type": "children"
}
Example Response
{
  "rewritten_title": "How Our Changing Earth Affects Plants and Animals",
  "rewritten_content": "Our planet is getting warmer, and this is changing the homes of many plants and animals. When the weather gets hotter or rainier, it can make it hard for some creatures to live where they used to. Some animals might move to new places to find food and shelter. Plants might bloom at different times than before. Sadly, some animals and plants that can't adapt might disappear forever. All these changes are connected, like a big puzzle. When one piece changes, it affects all the others. This is important because plants and animals help make our world beautiful and healthy for everyone, including us!"
}