Skip to content
Product Documentation

List games with league, ET date-range, team, and status filters.

GET
/v1/games
curl --request GET \
--url 'https://api.betflux.ai/v1/games?league=MLB&status=SCHEDULED' \
--header 'Authorization: Bearer <token>'
league
string
Allowed values: MLB NBA NHL NFL NCAAM
date_from

Inclusive ET game date (YYYY-MM-DD); pair with date_to.

string

Inclusive ET game date (YYYY-MM-DD); pair with date_to.

date_to
string
team

Canonical team name; matches home or away.

string

Canonical team name; matches home or away.

status
string
Allowed values: SCHEDULED DELAYED STARTED SUSPENDED COMPLETED POSTPONED
limit
integer
>= 1 <= 10000
cursor
string

A page of games.

Media typeapplication/json
object
data
required
Array<object>
object
id
required

Public game id (e.g. NBA_GSW_MIA_20250408); internal UUID for games not yet minted.

string
league
required

League code, e.g. NBA, NFL, MLB, NHL, NCAAM.

string
game_date
required

Eastern-Time calendar date of the scheduled start (matches closing-lines game_date).

string
start_time
required

Scheduled start, ISO 8601 UTC.

string
status
required

Schedule status, e.g. SCHEDULED, STARTED, COMPLETED.

string
Allowed values: SCHEDULED DELAYED STARTED SUSPENDED COMPLETED POSTPONED
is_live
required

True while the game is in progress.

boolean
home_team
required

Canonical home team name.

string
home_team_abbr
required

Home team abbreviation, e.g. MIA.

string
home_team_id
required

Canonical home team UUID (matches /v1/teams ids).

string
away_team
required

Canonical away team name.

string
away_team_abbr
required

Away team abbreviation, e.g. GSW.

string
away_team_id
required

Canonical away team UUID (matches /v1/teams ids).

string
next_cursor
required
string | null
Example
{
"data": [
{
"status": "SCHEDULED"
}
]
}

Validation failed — unknown or invalid query parameter, or a malformed range (problem type validation-error).

Media typeapplication/problem+json

RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.

object
type
required

Stable problem type URI.

string
title
required

Short human-readable summary.

string
status
required

HTTP status code.

integer
detail

Explanation specific to this occurrence.

string
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example"
}

Missing, malformed, or unrecognized API key (problem type invalid-key).

Media typeapplication/problem+json

RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.

object
type
required

Stable problem type URI.

string
title
required

Short human-readable summary.

string
status
required

HTTP status code.

integer
detail

Explanation specific to this occurrence.

string
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example"
}

The key has no entitled tier — subscription lapsed or absent (problem type subscription-required; the body carries an upgrade_url).

Media typeapplication/problem+json

RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.

object
type
required

Stable problem type URI.

string
title
required

Short human-readable summary.

string
status
required

HTTP status code.

integer
detail

Explanation specific to this occurrence.

string
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example"
}

API key revoked or suspended (problem type key-disabled), or the requested range exceeds the tier’s history window (history-restricted).

Media typeapplication/problem+json

RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.

object
type
required

Stable problem type URI.

string
title
required

Short human-readable summary.

string
status
required

HTTP status code.

integer
detail

Explanation specific to this occurrence.

string
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example"
}

Rate limit, monthly row quota, or ops throttle — the problem type distinguishes rate-limited, quota-exhausted, and throttled.

Media typeapplication/problem+json

RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.

object
type
required

Stable problem type URI.

string
title
required

Short human-readable summary.

string
status
required

HTTP status code.

integer
detail

Explanation specific to this occurrence.

string
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example"
}