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

Injuries

GET
https://api.playbook-api.com/v1/injuries
Last modified:2026-02-26 04:53:11
Returns the latest injury report for the selected league, grouped by team.
Use this endpoint to pull current player injury status, designation, and availability notes.
Data refreshes throughout the day; use the last_updated field in the response to confirm when the report was last synced.
Requires a valid api_key.
Examples:
Latest NBA injuries
https://api.playbook-api.com/v1/injuries?league=NBA&api_key=YOUR_API_KEY
Specific NBA report date:
https://api.playbook-api.com/v1/injuries?league=NBA&reportDate=2026-02-25&api_key=YOUR_API_KEY

Request

Query Params

Responses

🟢200
application/json
Body

🟠401Unauthorized
🟠404404 - Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.playbook-api.com/v1/injuries?league=NBA&api_key=YOUR_API_KEY&reportDate=YYYY-MM-DD'
Response Response Example
200 - Example payload
{
    "league": "NBA",
    "last_updated": "2025-12-31T21:15:00Z",
    "teams": [
        {
            "team": "Los Angeles Lakers",
            "abbr": "LAL",
            "injuries": [
                {
                    "player": "LeBron James",
                    "status": "Questionable",
                    "injury": "Ankle",
                    "details": "Left ankle soreness",
                    "updated": "2025-12-31T19:45:00Z"
                }
            ]
        },
        {
            "team": "Boston Celtics",
            "abbr": "BOS",
            "injuries": []
        }
    ]
}
Modified at 2026-02-26 04:53:11
Previous
Team Stats
Next
Splits
Built with