API Documentation
Back to API keysUse our API to integrate content generation directly into your applications.
Authentication
All API requests require a valid API key. Include your API key in the header of each request.
x-api-key: YOUR_API_KEY
Endpoints
POST
/api/v1/generate
Generates an SEO-optimized article based on the provided parameters.
Parameters
Name | Type | Required | Description |
---|---|---|---|
topic | string | Required | The main topic of the article to generate. |
length | number | Optional | Approximate length of the article in words. |
tone | string | Optional | The tone of the article (professional, conversational, technical, etc.). |
language | string | Optional | The language of the article (ISO 639-1 code). |
structure | string | Optional | Structure of the article (paragraphs, sections, etc.). |
seo | object | Optional | SEO optimization parameters. |
curl -X POST \
"https://www.contiqo.com/api/v1/generate" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"topic": "SEO best practices",
"length": 1000,
"tone": "professional",
"language": "en",
"structure": "detailed",
"seo": {
"keywords": "SEO, best practices, optimization",
"title": "Complete Guide to SEO Best Practices",
"description": "Learn the most effective SEO practices for 2024",
"headingTags": true
}
}'