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

Teams

GET
https://api.playbook-api.com/v1/teams
Last modified:2026-01-02 01:11:02
Returns team metadata including:
Names + abbreviations
Brand colors
Standings / record info (where available)
Optional: include injury data by passing injuries=true.
Use this endpoint to power team pickers, matchup headers, logos/colors, and standings displays.

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/teams?league=NBA&injuries=true&api_key=YOUR_API_KEY'
Response Response Example
{
    "league": "NBA",
    "count": 30,
    "includeInjuries": true,
    "data": [
        {
            "teamId": "1",
            "league": "NBA",
            "city": "Los Angeles",
            "name": "Lakers",
            "fullName": "Los Angeles Lakers",
            "abbreviation": "LAL",
            "primaryColor": "#552583",
            "secondaryColor": "#FDB927",
            "standings": {
                "wins": 25,
                "losses": 10,
                "ties": 0,
                "pct": 0.714,
                "pointsFor": 2800,
                "pointsAgainst": 2600,
                "streak": "W3"
            },
            "injuries": [
                {
                    "name": "LeBron James",
                    "status": "Questionable",
                    "reason": "Ankle (L) • Soreness",
                    "statusContext": "Injury"
                }
            ]
        }
    ]
}
Modified at 2026-01-02 01:11:02
Previous
Me
Next
Injuries
Built with