Skip to main content

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 NameTypeSupported ValueDescriptionRequired
typetextCONTENT_EXPANDERFeature name✔️
modeltextSee available modelsModel identifier✔️
conversationIdtextCONTENT_EXPANDERConversation ID✔️
promptObject.tonestringinformativeTone of expanded content✔️
promptObject.numberOfWordnumber100Target word count✔️
promptObject.promptstringContent to expandText to expand✔️

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": "CONTENT_EXPANDER",
"model": "gpt-4o",
"conversationId": "CONTENT_EXPANDER",
"promptObject": {
"tone": "informative",
"numberOfWord": 100,
"prompt": "AI is transforming industries."
}
}'

Interactive Playground

Try the API directly in your browser:

Loading interactive playground...

Response Format

{}