GET odds-by-tournaments

Retrieves odds for all fixtures in a specified tournament.

Endpoint

GET /v4/odds-by-tournaments

Request Parameters

  • tournamentIds* (string) A comma-separated list of tournament IDs.
  • bookmaker (string) (Optional) The slug of the bookmaker to return odds from.
  • verbosity (number) (Optional) The verbosity level to control the detail of the response.
  • oddsFormat (string) (Optional) Format of odds in the response. (e.g. decimal, american).

Example Request

GET /v4/odds-by-tournaments?tournamentIds=17

Example Response

[
  {
    "fixtureId": "id1000001761300517",
    "participant1Id": 3,
    "participant2Id": 17,
    "sportId": 10,
    "tournamentId": 17,
    "seasonId": null,
    "externalProviders": {
      "betradarId": 61300517,
      "mollybetId": null,
      "opticoddsId": null,
      "lsportsId": null,
      "txoddsId": null,
      "sofascoreId": null,
      "betgeniusId": 12482853,
      "flashscoreId": null,
      "pinnacleId": 1610924789,
      "oddinId": null
    },
    "statusId": null,
    "hasOdds": true,
    "startTime": "2025-08-16T16:30:00.000Z",
    "trueStartTime": null,
    "trueEndTime": null,
    "updatedAt": "2025-07-14T20:06:02.074Z",
    "participant1Name": "Wolverhampton Wanderers",
    "participant2Name": "Manchester City",
    "sportName": "Soccer",
    "tournamentSlug": "premier-league",
    "categorySlug": "england",
    "categoryName": "England",
    "tournamentName": "Premier League",
    "bookmakerOdds": {
      "pinnacle": {
        "bookmakerFixtureId": "1610924789",
        "fixturePath": "https://www.pinnacle.com/en/e/e/e/1610924789/#all",
        "bookmakerIsActive": true,
        "markets": {
          "101": {
            "bookmakerMarketId": "line/29/1980/3180242530/0/moneyline",
            "outcomes": {
              "101": {
                "players": {
                  "0": {
                    "price": 5.84,
                    "limit": 250,
                    "active": true,
                    "changedAt": "2025-07-17T10:45:56.606Z",
                    "playerId": 0,
                    "bookmakerOutcomeId": "home"
                  }
                }
              },
              "102": {
                "players": {
                  "0": {
                    "price": 4.76,
                    "limit": 250,
                    "active": true,
                    "changedAt": "2025-07-17T10:45:56.606Z",
                    "playerId": 0,
                    "bookmakerOutcomeId": "draw"
                  }
                }
              },
              "103": {
                "players": {
                  "0": {
                    "price": 1.454,
                    "limit": 550.66,
                    "active": true,
                    "changedAt": "2025-07-17T10:45:56.606Z",
                    "playerId": 0,
                    "bookmakerOutcomeId": "away"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
]

Response (200 OK)

On a successful request, the server responds with a status code 200 and returns a JSON object containing fixtures with their associated odds.

  • fixtureId(string) The unique identifier of the fixture to retrieve scores for.
  • sportId(number)The unique identifier for the sport. This ID must correspond to an existing sport.
  • tournamentId(string)The unique identifier for the tournament. This ID must correspond to an existing tournament.
  • startTime(string)ISO 8601 start time.
  • participant1Name(string) The name of the first participant (in your requested language).
  • participant2Name(string) The name of the second participant (in your requested language).
  • bookmakerOdds (object) Odds grouped by bookmaker slug:
    • bookmakerFixtureId (string) Unique fixture ID used by the bookmaker.
    • fixturePath (string) Link to the bookmaker's betting page for the fixture.
    • bookmakerIsActive (boolean) Indicates whether the bookmaker is currently offering odds for this fixture.
    • markets (object) Object containing market IDs as keys and their corresponding market data:
      • bookmakerMarketId (string) Internal market ID or path used by the bookmaker.
      • outcomes (object) Map of outcome IDs to outcome data. Each outcome object includes player-level pricing:
        • players (object) Each outcome maps to one or more players offering odds.:
          • price (number) The price (odds) offered.
          • limit (number) The maximum stake allowed for the odds.
          • active (boolean) Whether the odds are currently active.
          • changedAt (string) Timestamp of the last change to the odds.
          • playerId (number) Player ID (usually 0).
          • bookmakerOutcomeId (string) Bookmaker's outcome label.

Notes

  • Endpoint cooldown: 1000ms
Previous pageGET odds
Report an issue
Select one