Skip to main content
GET
/
games
/
fixtures
Upcoming Games
curl --request GET \
  --url https://v1.basketball.sportsapipro.com/games/fixtures \
  --header 'x-api-key: <api-key>'
V1 Legacy Endpoint — This is a V1 API endpoint. For new integrations, we recommend using the Basketball V2 API which provides richer data and more endpoints.

Overview

Returns upcoming basketball games (fixtures) that have not yet started. Use this endpoint to display schedules and upcoming matchups.

Query Parameters

competitions
integer
Filter by competition ID (e.g., 132 for NBA)
date
string
Filter by specific date (YYYY-MM-DD format)

Code Examples

curl -X GET "https://v1.basketball.sportsapipro.com/games/fixtures?competitions=132" \
  -H "x-api-key: YOUR_API_KEY"

Get Games for Specific Date

curl -X GET "https://v1.basketball.sportsapipro.com/games/fixtures?competitions=132&date=2026-01-27" \
  -H "x-api-key: YOUR_API_KEY"

Response Structure

games
array
Array of upcoming game objects

Authorizations

x-api-key
string
header
required

Your SportsAPI Pro API key

Query Parameters

competitions
integer

Filter by competition ID

Example:

132

date
string<date>

Filter by date (YYYY-MM-DD)

Example:

"2026-01-26"

Response

200

Fixtures retrieved successfully

Last modified on April 12, 2026