Catalog/sportsent-trivia-categories

Data

Trivia category catalog joined with question counts + difficulty mix API

Joins the Open Trivia DB category list with each category's question-count breakdown and derives the easy/medium/hard difficulty mix percentages, sorts categories by size, and reports the largest category and grand total. The MORE: OpenTDB exposes the category list and per-category counts as separate endpoints; we fan them out, merge, derive the mix, and rank. Distinct from misc-trivia (which serves questions). Answers 'which trivia categories have the most questions', 'how hard is the geography pool', 'what trivia topics are available'.

Price$0.01per request
MethodPOST
Route/v1/data/sportsent-trivia-categories
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatriviaquizopentdbcategoriesdifficultycatalogentertainment
API URLhttps://x402.hexl.dev/v1/data/sportsent-trivia-categories
Integration docs
Example request
{}
Example response
{
  "categoryCount": 24,
  "totalQuestions": 5296,
  "largest": {
    "name": "Entertainment: Video Games",
    "total": 1184
  },
  "categories": [
    {
      "id": 15,
      "name": "Entertainment: Video Games",
      "total": 1184,
      "easy": 406,
      "medium": 546,
      "hard": 232,
      "difficultyMix": {
        "easyPct": 34.3,
        "mediumPct": 46.1,
        "hardPct": 19.6
      }
    },
    {
      "id": 12,
      "name": "Entertainment: Music",
      "total": 495,
      "easy": 140,
      "medium": 267,
      "hard": 88,
      "difficultyMix": {
        "easyPct": 28.3,
        "mediumPct": 53.9,
        "hardPct": 17.8
      }
    },
    {
      "id": 9,
      "name": "General Knowledge",
      "total": 469,
      "easy": 215,
      "medium": 177,
      "hard": 77,
      "difficultyMix": {
        "easyPct": 45.8,
        "mediumPct": 37.7,
        "hardPct": 16.4
      }
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {}
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}