API Documentation

Everything you need to integrate Cappers API into your application. Get started in minutes with our comprehensive guides and code examples.

Quick Start

Terminal
# Get your API key from the dashboard, then:

curl -X GET "https://api.cappersapi.com/v1/nba/teams" \
  -H "Authorization: cap_your_api_key"

# Response:
{
  "data": [
    {
      "id": 1,
      "name": "Celtics",
      "city": "Boston",
      "conference": "East"
    },
    ...
  ]
}