Skip to main content

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 NameTypeExampleDescriptionRequired
typetextCONTENT_GENERATOR_BLOG_ARTICLEFeature identifier✔️
modeltextclaude-3-5-sonnet-20240620AI model to use✔️
conversationIdtextCONTENT_GENERATOR_BLOG_ARTICLEConversation context✔️
promptObject.tonestringinformativeContent tone (informative, creative, professional, etc.)✔️
promptObject.numberOfWordnumber1000Target word count✔️
promptObject.numberOfSectionnumber5Number of sections to structure the article✔️
promptObject.keywordsstringAI healthcare, machine learningSEO keywords (comma-separated)✔️
promptObject.languagestringEnglishContent language✔️
promptObject.promptstringHow AI is transforming healthcareArticle topic/instruction✔️

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_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"
}
}'

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.