GET /v1/board/sports-nba

$0.03realtimetier: datacache 60sEngine A — Probability API

One-call board of the most active NBA basketball 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 NBA basketball at a glance.

Parameters

NameInTypeRequiredNotes
limitqueryintegerno (default: 20)

Example

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

Example response

{
  "data": {
    "category": "sports-nba",
    "markets": [
      {
        "slug": "thunder-win-nba-finals-2027",
        "question": "Will the Thunder win the 2027 NBA Finals?",
        "probability": 0.199,
        "volume_24h_usd": 243468.28,
        "resolution_date": "2027-06-20"
      }
    ]
  },
  "meta": {
    "endpoint": "/v1/board/sports-nba",
    "version": "1.0.0",
    "generated_at": "2026-08-18T22:54:16.759Z",
    "freshness": "realtime",
    "sources": [
      "kalshi",
      "polymarket"
    ],
    "request_id": "req_00000000",
    "docs": "https://x402-factory.com/docs/probability.board.sports-nba",
    "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.