API Documentation
Everything you need to integrate Cappers API into your application. Get started in minutes with our comprehensive guides and code examples.
All Plans Include Full API Access
Every plan, including free, gets complete access to all NBA endpoints including real-time game data, player & team statistics, advanced analytics, and historical data. The only difference between plans is the rate limit (requests per minute).
Free
100 req/min • Community support
Pro - $9.99/mo
1,000 req/min • Webhooks • Analytics • Priority support
Elite - Custom
5,000+ req/min • 24/7 support • SLA • Dedicated infrastructure
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"
},
...
]
}