Playbook-API
  1. Core Endpoints
Playbook-API
  • Global
    • Overview
    • Base URL (Servers)
    • Authentication
    • Rate Limits + Usage
    • Errors
    • League / sportKey Conventions
    • Support
  • Core Endpoints
    • Health
      GET
    • Me
      GET
    • Teams
      GET
    • Team Stats
      GET
    • Injuries
      GET
    • Splits
      GET
    • Splits (Historical/History)
      GET
    • Odds-Games
      GET
    • Lines
      GET
    • Games
      GET
    • Recent Form
      GET
    • Head-to-Head
      GET
  • MLB
    • Pitcher Stats (Season)
      GET
    • Starting Pitchers
      GET
    • Ballpark Weather
      GET
    • Strikeout Predictor
      GET
  1. Core 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