Outline
Hierarchical outline with headings, summaries, and subsections
$0.02
per call
POST /outline
AI Processing
Try It
This tool requires an API key. Get one from $1 to try it.
curl Example
curl -X POST https://api.aipaygen.com/outline \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"topic": "string",
"depth": 2,
"sections": 6
}'
Python Example
import requests
resp = requests.post(
"https://api.aipaygen.com/outline",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
json={
"topic": "string",
"depth": 2,
"sections": 6
}
)
print(resp.json())
Response Format
{
"result": "<Outline output>",
"_meta": {
"endpoint": "/outline",
"model": "claude-sonnet-4-20250514",
"cost_usd": 0.02
}
}
Related Tools
Get API Key — From $1
$0.25 trial credits free. ~40 AI calls. No subscription.
Get StartedOr install via MCP: pip install aipaygen-mcp