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 Name | Type | Supported Value | Description | Required |
|---|---|---|---|---|
| type | text | PARAPHRASER | Feature name | ✔️ |
| model | text | See available models | Model identifier | ✔️ |
| conversationId | text | PARAPHRASER | Conversation ID | ✔️ |
| promptObject.tone | string | informative | Tone of paraphrase | ✔️ |
| promptObject.numberOfSection | number | 3 | Number of sections | ✔️ |
| promptObject.numberOfWord | number | 100 | Words per section | ✔️ |
| promptObject.prompt | string | AI content | Text to paraphrase | ✔️ |
Endpoint
Request Headers
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Code Example
- cURL
- JavaScript
- Python
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."
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
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.'
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
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."
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
Try the API directly in your browser:
Loading interactive playground...
Response Format
{}