Skip to main content
GET
/
v2
/
sports
/
games
/
{slug}
Game Detail
curl --request GET \
  --url https://api.polynode.dev/v2/sports/games/{slug} \
  --header 'x-api-key: <api-key>'
{
  "title": "Knicks vs. Rockets",
  "slug": "nba-nyk-hou-2026-03-31",
  "score": "94-111",
  "gameId": 20023567,
  "startTime": "2026-04-01T00:00:00Z",
  "eventDate": "2026-03-31",
  "closed": true,
  "volume24hr": 7684869,
  "teams": [
    {
      "id": 100494,
      "name": "Knicks",
      "league": "nba",
      "record": "48-28",
      "logo": "https://polymarket-upload.s3.us-east-2.amazonaws.com/NBA+Team+Logos/NYK.png",
      "abbreviation": "nyk",
      "alias": "Knicks",
      "color": "#E08020",
      "providerId": 6
    },
    {
      "id": 100503,
      "name": "Rockets",
      "league": "nba",
      "record": "46-29",
      "logo": "https://polymarket-upload.s3.us-east-2.amazonaws.com/NBA+Team+Logos/HOU.png",
      "abbreviation": "hou",
      "alias": "Rockets",
      "color": "#C00020",
      "providerId": 14
    }
  ],
  "markets": [
    {
      "question": "Knicks vs. Rockets: O/U 217.5",
      "sportsMarketType": "totals",
      "outcomePrices": "[\"0\",\"1\"]",
      "clobTokenIds": "[\"token1\",\"token2\"]",
      "volume24hr": 250000,
      "gameStartTime": "2026-04-01 00:00:00+00",
      "clearBookOnStart": true,
      "secondsDelay": 3
    },
    {
      "question": "Jalen Brunson: Points O/U 24.5",
      "sportsMarketType": "points",
      "outcomePrices": "[\"0.46\",\"0.54\"]"
    }
  ],
  "eventMetadata": {
    "context_description": "The New York Knicks entered their March 31 matchup at the Houston Rockets as the Eastern Conference's No. 3 seed at 48-27..."
  }
}
Returns everything about a single game. This is the most detailed sports endpoint. Use the slug from the List Games or Search endpoints.
slug
string
required
Game slug (e.g. nba-nyk-hou-2026-03-31).
key
string
required
Your API key.
{
  "title": "Knicks vs. Rockets",
  "slug": "nba-nyk-hou-2026-03-31",
  "score": "94-111",
  "gameId": 20023567,
  "startTime": "2026-04-01T00:00:00Z",
  "eventDate": "2026-03-31",
  "closed": true,
  "volume24hr": 7684869,
  "teams": [
    {
      "id": 100494,
      "name": "Knicks",
      "league": "nba",
      "record": "48-28",
      "logo": "https://polymarket-upload.s3.us-east-2.amazonaws.com/NBA+Team+Logos/NYK.png",
      "abbreviation": "nyk",
      "alias": "Knicks",
      "color": "#E08020",
      "providerId": 6
    },
    {
      "id": 100503,
      "name": "Rockets",
      "league": "nba",
      "record": "46-29",
      "logo": "https://polymarket-upload.s3.us-east-2.amazonaws.com/NBA+Team+Logos/HOU.png",
      "abbreviation": "hou",
      "alias": "Rockets",
      "color": "#C00020",
      "providerId": 14
    }
  ],
  "markets": [
    {
      "question": "Knicks vs. Rockets: O/U 217.5",
      "sportsMarketType": "totals",
      "outcomePrices": "[\"0\",\"1\"]",
      "clobTokenIds": "[\"token1\",\"token2\"]",
      "volume24hr": 250000,
      "gameStartTime": "2026-04-01 00:00:00+00",
      "clearBookOnStart": true,
      "secondsDelay": 3
    },
    {
      "question": "Jalen Brunson: Points O/U 24.5",
      "sportsMarketType": "points",
      "outcomePrices": "[\"0.46\",\"0.54\"]"
    }
  ],
  "eventMetadata": {
    "context_description": "The New York Knicks entered their March 31 matchup at the Houston Rockets as the Eastern Conference's No. 3 seed at 48-27..."
  }
}

What you get

FieldDescription
scoreFinal score (e.g. 94-111) or live score during game
teamsTeam names, logos, records, colors, abbreviations
marketsAll betting markets: moneyline, spreads, totals, player props
eventMetadata.context_descriptionAI-generated game preview with injuries, stats, matchup context
gameIdUnique game identifier
startTimeScheduled start time (UTC)
clearBookOnStartWhether the order book clears at game start
secondsDelaySeconds delay for live market updates (typically 3s)

Market types you’ll see

sportsMarketTypeWhat it is
moneylineWho wins the game
spreadsPoint spread betting
totalsOver/under total points
pointsPlayer points prop
reboundsPlayer rebounds prop
assistsPlayer assists prop
nrfiNo run first inning (MLB)
first_blood_gameFirst blood (esports)
kill_over_under_gameTotal kills over/under (esports)
lol_penta_killAny player penta kill (LoL)
See Market Types for the full list of 99 types.

Authorizations

x-api-key
string
header
required

Path Parameters

slug
string
default:nba-nyk-hou-2026-03-31
required

Game slug (e.g. nba-nyk-hou-2026-03-31)

Response

Game detail