Content Expander
Expand existing content to a specified word count using various AI models through the 1min.AI API. This endpoint takes your input text and expands it while maintaining the original context and meaning.
Available Models
Loading available models...
Request Parameters
All models share the same request structure:
| Field Name | Type | Supported Value | Description | Required |
|---|---|---|---|---|
| type | text | CONTENT_EXPANDER | Feature name | ✔️ |
| model | text | See available models | Model identifier | ✔️ |
| conversationId | text | CONTENT_EXPANDER | Conversation ID | ✔️ |
| promptObject.tone | string | informative | Tone of expanded content | ✔️ |
| promptObject.numberOfWord | number | 100 | Target word count | ✔️ |
| promptObject.prompt | string | Content to expand | Text to expand | ✔️ |
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": "CONTENT_EXPANDER",
"model": "gpt-4o",
"conversationId": "CONTENT_EXPANDER",
"promptObject": {
"tone": "informative",
"numberOfWord": 100,
"prompt": "AI is transforming industries."
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'CONTENT_EXPANDER',
model: 'gpt-4o',
conversationId: 'CONTENT_EXPANDER',
promptObject: {
tone: 'informative',
numberOfWord: 100,
prompt: 'AI is transforming industries.'
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
data = {
"type": "CONTENT_EXPANDER",
"model": "gpt-4o",
"conversationId": "CONTENT_EXPANDER",
"promptObject": {
"tone": "informative",
"numberOfWord": 100,
"prompt": "AI is transforming industries."
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
Try the API directly in your browser:
Loading interactive playground...
Response Format
{}