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
{ "type": "object", "required": [ "title", "content", "audience_type" ], "properties": { "title": { "type": "string", "description": "The original title of the article" }, "content": { "type": "string", "description": "The full text content of the original article" }, "audience_type": { "type": "string", "description": "The target audience for the rewritten article (e.g., 'children', 'teenagers', 'adults', 'experts')" } } }
Response Schema
{ "type": "object", "required": [ "rewritten_title", "rewritten_content" ], "properties": { "rewritten_title": { "type": "string", "description": "The rewritten title adapted for the specified audience" }, "rewritten_content": { "type": "string", "description": "The rewritten content of the article adapted for the specified audience" } } }
API Metadata
648
1
content generation
article rewriting
text transformation
audience adaptation
API Examples
{ "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" }
{ "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!" }