Blog Article Generator
Generate comprehensive blog articles using AI models with customizable tone, word count, structure, keywords, and language parameters. Perfect for creating SEO-optimized content that engages your audience.
Available Models
Loading available models...
Request Parameters
| Field Name | Type | Example | Description | Required |
|---|---|---|---|---|
| type | text | CONTENT_GENERATOR_BLOG_ARTICLE | Feature identifier | ✔️ |
| model | text | gpt-4o | AI model to use | ✔️ |
| conversationId | text | CONTENT_GENERATOR_BLOG_ARTICLE | Conversation context | ✔️ |
| promptObject.tone | string | informative | Content tone (informative, creative, professional, etc.) | ✔️ |
| promptObject.numberOfWord | number | 1000 | Target word count | ✔️ |
| promptObject.numberOfSection | number | 5 | Number of sections to structure the article | ✔️ |
| promptObject.keywords | string | AI healthcare, machine learning | SEO keywords (comma-separated) | ✔️ |
| promptObject.language | string | English | Content language | ✔️ |
| promptObject.prompt | string | How AI is transforming healthcare | Article topic/instruction | ✔️ |
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_GENERATOR_BLOG_ARTICLE",
"model": "gpt-4o",
"conversationId": "CONTENT_GENERATOR_BLOG_ARTICLE",
"promptObject": {
"tone": "informative",
"numberOfWord": 1000,
"numberOfSection": 5,
"keywords": "AI healthcare, machine learning medical, digital transformation",
"language": "English",
"prompt": "How artificial intelligence is transforming the healthcare industry"
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'CONTENT_GENERATOR_BLOG_ARTICLE',
model: 'gpt-4o',
conversationId: 'CONTENT_GENERATOR_BLOG_ARTICLE',
promptObject: {
tone: 'informative',
numberOfWord: 1000,
numberOfSection: 5,
keywords: 'AI healthcare, machine learning medical, digital transformation',
language: 'English',
prompt: 'How artificial intelligence is transforming the healthcare industry'
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
data = {
"type": "CONTENT_GENERATOR_BLOG_ARTICLE",
"model": "gpt-4o",
"conversationId": "CONTENT_GENERATOR_BLOG_ARTICLE",
"promptObject": {
"tone": "informative",
"numberOfWord": 1000,
"numberOfSection": 5,
"keywords": "AI healthcare, machine learning medical, digital transformation",
"language": "English",
"prompt": "How artificial intelligence is transforming the healthcare industry"
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
Loading interactive playground...
Response Format
The API returns a generated blog article with the specified structure, tone, and SEO optimization.