GET /v1/board/entertainment

$0.03realtimetier: datacache 60sEngine A — Probability API

One-call board of the most active entertainment prediction markets: top markets by volume with blended live probabilities, resolution dates, and per-market slugs for drill-down. The bulk read for agents tracking the state of entertainment at a glance.

Parameters

NameInTypeRequiredNotes
limitqueryintegerno (default: 20)

Example

curl "https://x402-factory.com/v1/board/entertainment?limit=10"

Example response

{
  "data": {
    "category": "entertainment",
    "markets": [
      {
        "slug": "gta-vi-releases-before-thanksgiving-2026-11",
        "question": "Will GTA VI release before Thanksgiving?",
        "probability": 0.7276,
        "volume_24h_usd": 384434.34,
        "resolution_date": "2026-11-26"
      },
      {
        "slug": "taylor-swift-2027-tour-announce-2026-08",
        "question": "Will Taylor Swift announce a 2027 stadium tour by August 31?",
        "probability": 0.3763,
        "volume_24h_usd": 69038.47,
        "resolution_date": "2026-08-31"
      },
      {
        "slug": "another-billion-dollar-film-2026-12",
        "question": "Will another 2026 film cross $1B worldwide by December 31?",
        "probability": 0.5542,
        "volume_24h_usd": 37751.88,
        "resolution_date": "2026-12-31"
      },
      {
        "slug": "time-person-of-the-year-ai-figure-2026",
        "question": "Will TIME's 2026 Person of the Year be an AI industry figure?",
        "probability": 0.1734,
        "volume_24h_usd": 18553.04,
        "resolution_date": "2026-12-15"
      },
      {
        "slug": "best-picture-favorite-wins-2027",
        "question": "Will the awards-season favorite win Best Picture at the 2027 Oscars?",
        "probability": 0.4482,
        "volume_24h_usd": 16474.28,
        "resolution_date": "2027-03-14"
      }
    ]
  },
  "meta": {
    "endpoint": "/v1/board/entertainment",
    "version": "1.0.0",
    "generated_at": "2026-08-18T22:54:16.758Z",
    "freshness": "realtime",
    "sources": [
      "kalshi",
      "polymarket"
    ],
    "request_id": "req_00000000",
    "docs": "https://x402-factory.com/docs/probability.board.entertainment",
    "data_mode": "live"
  }
}

Response schema (data payload)

{
  "type": "object",
  "properties": {
    "category": {
      "type": "string"
    },
    "markets": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          },
          "question": {
            "type": "string"
          },
          "probability": {
            "type": "number",
            "minimum": 0,
            "maximum": 1
          },
          "volume_24h_usd": {
            "type": "number"
          },
          "resolution_date": {
            "type": "string"
          }
        },
        "required": [
          "slug",
          "question",
          "probability",
          "volume_24h_usd",
          "resolution_date"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "category",
    "markets"
  ],
  "additionalProperties": false
}

The platform wraps every payload in an envelope: { "data": …, "meta": { endpoint, version, generated_at, freshness, sources, request_id, docs, data_mode } }.

Payment (x402)

Unpaid requests receive 402 with payment requirements (accepts). Pay $0.03 in USDC on Base per call via an X-PAYMENT header — see docs.x402.org. With PAYMENT_MODE=disabled (local dev) the endpoint is open.

Errors

StatusCodeMeaning
400INVALID_PARAMSInput failed validation; message lists the offending fields.
404NOT_FOUNDNo matching resource; suggestion may point to a sibling endpoint.
410RESOLVEDMarket/event settled; body includes a resolution summary.
503STALE_DATAUpstream feed down; stale data is never silently served beyond 2× cache TTL.
500INTERNALOur bug. The request_id helps us find it.