Skip to main content
GET
/
api
/
v2
/
events
/
{eventID}
Get a single event with markets
curl --request GET \
  --url 'https://therundown.io/api/v2/events/{eventID}?key='
{
  "meta": null,
  "events": [
    {
      "event_id": "09bfa53f8484a63e584398545c035932",
      "sport_id": 4,
      "event_date": "2026-02-12T00:00:00Z",
      "rotation_number_away": 529,
      "rotation_number_home": 530,
      "score": {
        "event_status": "STATUS_FINAL",
        "score_away": 107,
        "score_home": 110,
        "score_away_by_period": [
          27,
          22,
          26,
          32
        ],
        "score_home_by_period": [
          35,
          23,
          31,
          21
        ],
        "venue_name": "Spectrum Center",
        "venue_location": "Charlotte, NC",
        "broadcast": "FanDuel SN SE",
        "event_status_detail": "Final"
      },
      "teams": [
        {
          "team_id": 11,
          "name": "Atlanta",
          "mascot": "Hawks",
          "abbreviation": "ATL",
          "record": "26-30",
          "is_away": true,
          "is_home": false
        },
        {
          "team_id": 12,
          "name": "Charlotte",
          "mascot": "Hornets",
          "abbreviation": "CHA",
          "record": "26-29",
          "is_away": false,
          "is_home": true
        }
      ],
      "schedule": {
        "league_name": "National Basketball Association",
        "season_type": "Regular Season",
        "season_year": 2026
      },
      "markets": [
        {
          "id": 2518418,
          "market_id": 1,
          "name": "moneyline",
          "participants": [
            {
              "name": "Atlanta Hawks",
              "type": "TYPE_TEAM",
              "lines": [
                {
                  "value": "0",
                  "prices": {
                    "19": {
                      "price": -105,
                      "is_main_line": true,
                      "updated_at": "2026-02-11T22:00:00Z"
                    }
                  }
                }
              ]
            }
          ]
        },
        {
          "id": 2518419,
          "market_id": 2,
          "name": "handicap",
          "participants": [
            {
              "name": "Atlanta Hawks",
              "type": "TYPE_TEAM",
              "lines": [
                {
                  "value": "4.5",
                  "prices": {
                    "19": {
                      "price": -110,
                      "is_main_line": true,
                      "updated_at": "2026-02-11T22:00:00Z"
                    }
                  }
                }
              ]
            }
          ]
        },
        {
          "id": 2518420,
          "market_id": 3,
          "name": "totals",
          "participants": [
            {
              "name": "Over",
              "type": "TYPE_RESULT",
              "lines": [
                {
                  "value": "235.5",
                  "prices": {
                    "19": {
                      "price": -110,
                      "is_main_line": true,
                      "updated_at": "2026-02-12T00:10:43Z"
                    }
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.therundown.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

eventID
string
required

Canonical V2 event ID from the event_id field returned by event endpoints

Query Parameters

market_ids
string
default:1,2,3

Comma-separated market IDs. Defaults to 1,2,3 (Moneyline, Spread, Total). Limit: 12 market IDs per request. IDs beyond the 12th are silently ignored. Common IDs: 1=Moneyline, 2=Spread, 3=Total, 29=Player Points, 35=Player Rebounds, 38=Three Pointers, 39=Player Assists, 93=Player PRA, 94=Team Totals. Live variants: 41=Live ML, 42=Live Spread, 43=Live Total. If you need more than 12 markets, make multiple requests.

participant_ids
string

Comma-separated participant IDs to filter (max 99)

participant_type
enum<string>

Filter participants by type

Available options:
TYPE_TEAM,
TYPE_PLAYER,
TYPE_RESULT
affiliate_ids
string

Comma-separated sportsbook/affiliate IDs to filter. Common values include DraftKings (19), FanDuel (23), BetMGM (22), Bovada (2), Pinnacle (3).

main_line
enum<string>
default:false

Only return main lines (primary odds, not alternates)

Available options:
true,
false

Response

Event with markets

meta
object
events
object[]