Skip to main content

Content Paraphraser

Paraphrase text content into multiple sections using various AI models through the 1min.AI API. This endpoint supports multiple language models for paraphrasing content with specified tone, section count, and word count parameters.

Available Models

Loading available models...

Request Parameters

All models share the same request structure:

Field NameTypeSupported ValueDescriptionRequired
typetextPARAPHRASERFeature name✔️
modeltextSee available modelsModel identifier✔️
conversationIdtextPARAPHRASERConversation ID✔️
promptObject.tonestringinformativeTone of paraphrase✔️
promptObject.numberOfSectionnumber3Number of sections✔️
promptObject.numberOfWordnumber100Words per section✔️
promptObject.promptstringAI contentText to paraphrase✔️

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Code Example

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "PARAPHRASER",
"model": "gpt-4o",
"conversationId": "PARAPHRASER",
"promptObject": {
"tone": "informative",
"numberOfSection": 3,
"numberOfWord": 100,
"prompt": "Artificial Intelligence (AI) is a rapidly evolving field that encompasses machine learning, natural language processing, computer vision, and robotics. AI systems are designed to perform tasks that typically require human intelligence, such as problem-solving, decision-making, and pattern recognition."
}
}'

Interactive Playground

Try the API directly in your browser:

Loading interactive playground...

Response Format

{}