API Documentation

Back to API keys

Use 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

NameTypeRequiredDescription
topicstringRequiredThe main topic of the article to generate.
lengthnumberOptionalApproximate length of the article in words.
tonestringOptionalThe tone of the article (professional, conversational, technical, etc.).
languagestringOptionalThe language of the article (ISO 639-1 code).
structurestringOptionalStructure of the article (paragraphs, sections, etc.).
seoobjectOptionalSEO 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
  }
}'