The Rundown · Example Payload

Therundown List Sports Example

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Therundown List Sports Example is an example object payload from The Rundown, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryendpointrequestresponse

Example Payload

Raw ↑
{
  "summary": "List all sports",
  "endpoint": "GET /api/v2/sports",
  "request": {
    "method": "GET",
    "url": "https://therundown.io/api/v2/sports",
    "headers": {
      "X-Therundown-Key": "YOUR_API_KEY"
    }
  },
  "response": {
    "sports": [
      {
        "sport_id": 2,
        "sport_name": "NFL",
        "has_scores": true,
        "has_odds": true
      },
      {
        "sport_id": 4,
        "sport_name": "NBA",
        "has_scores": true,
        "has_odds": true
      },
      {
        "sport_id": 3,
        "sport_name": "MLB",
        "has_scores": true,
        "has_odds": true
      },
      {
        "sport_id": 6,
        "sport_name": "NHL",
        "has_scores": true,
        "has_odds": true
      }
    ]
  }
}