SoccersAPIDocs
DocsReference › Livescores

Livescores

Match feeds for matches in play and for the current, previous and next day. Every feed returns match objects with status, clock, scores, teams and league, and can embed datasets through include.

Open in the interactive reference

Operations

Route reference

Operations

The t query parameter selects the operation. Parameters not listed for an operation are ignored.

t Operation Required Optional
live Matches in play. Paginated, 100 items per page. include, utc, lang, odds_format, page
today Today's matches. Paginated, 100 items per page. include, utc, lang, odds_format, page
tomorrow Tomorrow's matches. Paginated, 100 items per page. include, utc, lang, odds_format, page
yesterday Yesterday's matches. Paginated, 100 items per page. include, utc, lang, odds_format, page
notstarted Today's matches not started. Paginated, 100 items per page. include, utc, lang, odds_format, page
ended Today's matches ended. Paginated, 100 items per page. include, utc, lang, odds_format, page

Includes

Comma-separated dataset names for include, without spaces:

Live publication behavior

Scores and event attribution are updated independently. A score change can be visible before the goal event, scorer or assist has been published by the source, and no fixed maximum delay is guaranteed. Keep events on the normal polling cycle: if attribution is incomplete, read it again on the next scheduled poll instead of adding an immediate high-frequency events loop.

Examples

Matches in play:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=live&include=events,stats

Today's matches:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=today&utc=2

Tomorrow's matches:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=tomorrow

Yesterday's matches:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=yesterday

Today's matches not started:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=notstarted

Today's matches ended:

GET /v2.2/livescores/?user=USER&token=TOKEN&t=ended