Content Generation
Generate blog posts from analysis results.
Generate blog post
/api/v1/analysis/:analysis_uuid/content
15 credits
Auth
Generates a blog post from analysis results for a specific question. Costs 15 credits.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
analysis_uuid
|
path | string | required | Analysis UUID |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
question_uuid
|
string | required | Question UUID to base the post on |
provider
|
string | optional (gemini) | LLM provider: 'gemini' or 'claude' |
keywords
|
array | optional | Custom keywords to incorporate |
Response
{
"tokens": {
"input": 2500,
"output": 1800,
"total": 4300
},
"content": "# Best Code Review Tools for 2026\n\nIn the fast-evolving world of software development...",
"provider": "gemini",
"credits_used": 15,
"model": "gemini-2.0-flash"
}
Example
curl -X POST https://botsee.io/api/v1/analysis/ANALYSIS_UUID/content -H "Authorization: Bearer $BOTSEE_API_KEY" -H "Content-Type: application/json" -d '{"question_uuid":"Q_UUID","provider":"gemini"}'