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

Splits

GET
https://api.playbook-api.com/v1/splits
Last modified:2026-01-02 01:26:28
Public Consenus/ Betting splits (spread / ML / total).

Request

Authorization
Add parameter in header
Example:
X-Token: ********************
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.playbook-api.com/v1/splits?league=nba&api_key=YOUR_API_KEY' \
--header 'Authorization: <api-key>'
Response Response Example
{
    "sportKey": "americanfootball_nfl",
    "count": 16,
    "requestsRemaining": 24850,
    "data": [
        {
            "gameId": "abc123",
            "sportKey": "americanfootball_nfl",
            "league": "NFL",
            "date": "2025-01-01",
            "startTime": "2025-01-01T18:00:00Z",
            "startTimeEst": "1:00 PM EST",
            "homeTeamName": "Dallas Cowboys",
            "awayTeamName": "Philadelphia Eagles",
            "splits": {
                "spread": {
                    "bets": {
                        "homePercent": 58,
                        "awayPercent": 42
                    },
                    "money": {
                        "homePercent": 62,
                        "awayPercent": 38
                    },
                    "source": {
                        "booksUsed": 10
                    }
                },
                "moneyline": {
                    "bets": {
                        "homePercent": 65,
                        "awayPercent": 35
                    },
                    "money": {
                        "homePercent": 70,
                        "awayPercent": 30
                    },
                    "source": {
                        "booksUsed": 10
                    }
                },
                "total": {
                    "bets": {
                        "overPercent": 52,
                        "underPercent": 48
                    },
                    "money": {
                        "overPercent": 56,
                        "underPercent": 44
                    },
                    "source": {
                        "booksUsed": 10
                    }
                }
            }
        }
    ]
}
Modified at 2026-01-02 01:26:28
Previous
Injuries
Next
Splits (Historical/History)
Built with