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

Games

GET
https://api.playbook-api.com/v1/games
Last modified:2026-01-02 01:25:44
Returns full Playbook game objects generated from splits data (no live odds calls).
Use this endpoint for:
Fast dashboards
Historical browsing
Apps that don’t need real-time lines
Note: startTime may be null when static datasets don’t include kickoff/tip times.

Request

Query Params

Responses

🟢200Success
application/json
Body

🟠401
🟠402
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.playbook-api.com/v1/games?league=nba&date=2026-01-01&api_key=YOUR_API_KEY'
Response Response Example
200 - Example 1
{
    "league": "NBA",
    "date": "2025-01-01",
    "count": 10,
    "data": [
        {
            "playbookGameId": "pb-nba-2025-01-01-lal-gsw",
            "league": "NBA",
            "sport": "basketball",
            "date": "2025-01-01",
            "startTime": null,
            "homeTeam": {
                "id": "1",
                "name": "Los Angeles Lakers",
                "abbreviation": "LAL",
                "primaryColor": "#552583",
                "secondaryColor": "#FDB927"
            },
            "awayTeam": {
                "id": "2",
                "name": "Golden State Warriors",
                "abbreviation": "GSW",
                "primaryColor": "#1D428A",
                "secondaryColor": "#FFC72C"
            },
            "splits": {
                "spread": {
                    "homePercent": 58,
                    "awayPercent": 42
                },
                "moneyline": {
                    "homePercent": 65,
                    "awayPercent": 35
                },
                "total": {
                    "overPercent": 52,
                    "underPercent": 48
                }
            },
            "tags": {
                "mostBetRank": null,
                "notes": null
            }
        }
    ]
}
Modified at 2026-01-02 01:25:44
Previous
Lines
Built with