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
The Blog Article Generator supports all major AI models including:
- Anthropic: Claude 3.5 Haiku, Claude 3.5 Sonnet, Claude 3.7 Sonnet, Claude 4 Opus, Claude 4 Sonnet
- OpenAI: GPT-3.5, GPT-4 Turbo, GPT-4o, GPT-4.1, GPT-5, o1, o3, o4
- Google: Gemini 1.0 Pro, Gemini 1.5 Flash/Pro, Gemini 2.0/2.5 Flash/Pro
- Mistral: Mistral Large 2, Mistral Small, Open Nemo, Pixtral 12B
- Meta: LLaMA 2 70B, LLaMA 3 70B, LLaMA 3.1 405B, LLaMA 4 Maverick/Scout
- Others: DeepSeek Chat/R1, Grok 2, Command R
Request Parameters
Field Name | Type | Example | Description | Required |
---|---|---|---|---|
type | text | CONTENT_GENERATOR_BLOG_ARTICLE | Feature identifier | ✔️ |
model | text | claude-3-5-sonnet-20240620 | 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": "claude-3-5-sonnet-20240620",
"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: 'claude-3-5-sonnet-20240620',
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": "claude-3-5-sonnet-20240620",
"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
API Playground
https://api.1min.ai/api/features
Generated cURL Command:
curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "CONTENT_GENERATOR_BLOG_ARTICLE",
"model": "claude-3-5-sonnet-20240620",
"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 Format
The API returns a generated blog article with the specified structure, tone, and SEO optimization.