Playbook-API
  1. Endpoints
Playbook-API
  • Global
    • Overview
    • Base URL (Servers)
    • Authentication
    • Rate Limits + Usage
    • Errors
    • League / sportKey Conventions
    • Support
  • Endpoints
    • Health
      GET
    • Me
      GET
    • Teams
      GET
    • Injuries
      GET
    • Splits
      GET
    • Splits (Historical/History)
      GET
    • Odds-Games
      GET
    • Lines
      GET
    • Games
      GET
  1. Endpoints

Odds-Games

GET
https://api.playbook-api.com/v1/odds-games
Last modified:2026-01-02 01:25:48
Returns a lightweight schedule of games from the odds provider:
Game IDs
Home/Away team names
Sport key metadata
Use this to get game IDs before calling heavier endpoints.

Request

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.playbook-api.com/v1/odds-games?league=NBA&api_key=YOUR_API_KEY'
Response Response Example
{
    "sportKey": "americanfootball_nfl",
    "count": 16,
    "requestsRemaining": 24850,
    "data": [
        {
            "gameId": "abc123",
            "sportKey": "americanfootball_nfl",
            "sportTitle": "NFL",
            "homeTeamName": "Dallas Cowboys",
            "awayTeamName": "Philadelphia Eagles"
        }
    ]
}
Modified at 2026-01-02 01:25:48
Previous
Splits (Historical/History)
Next
Lines
Built with