POST /api/topics

Extract Topics

Discover the main topics and themes in text. Returns topic labels, descriptions, relevance scores, and optional keywords.

$0.02 per request

> REQUEST

POST /api/topics

{
  "text": "The article discusses remote work productivity, mental health, and team collaboration...",
  "options": {
    "numTopics": 3,
    "includeKeywords": true
  }
}

> RESPONSE

{
  "result": {
    "topics": [
      {
        "label": "Remote Work Productivity",
        "description": "Analysis of how working from home affects output",
        "keywords": ["productivity", "efficiency", "performance"],
        "relevance": 0.95
      }
    ],
    "dominant_topic": "Remote Work Productivity",
    "text_length": 256
  },
  "tokens_used": { "prompt_tokens": 134, "completion_tokens": 156, "total_tokens": 290 }
}