Team fixtures
Team fixtures
GET
/v1/teams/{id}/fixtures
One team's matches, home and away, most recent first — recent form, head-to-head material and upcoming games in one list. Supports the same include, status and lang options as /v1/fixtures.
Parameters
| id | required | Team id. |
| status | optional | all | scheduled | live | finished. Defaults to all; "scheduled" lists upcoming games, "finished" past results. |
| start_time, end_time | optional | Narrow to a [start_time, end_time) kickoff window — unix seconds, UTC, start inclusive, end exclusive, no span limit. |
| include | optional | Comma list of odds | events | stats — same as /v1/fixtures. Caps per_page at 50. |
| lang | optional | Localize team & league names (21 languages, English fallback). |
| page, per_page | optional | Pagination (per_page max 100; 50 with include). Matches are ordered by kickoff, newest first. |
Example
GET /v1/teams/{id}/fixtures
curl https://api.5dollarfootballapi.com/v1/teams/{id}/fixtures
-H "Authorization: Bearer fb_live_your_key"
{
"success": 1,
"data": [
{
"id": 197508211,
"league": { "id": 39, "name": "Premier League" },
"teams": { "home": { "id": 2618, "name": "Arsenal" }, "away": { "id": 2622, "name": "Everton" } },
"kickoff_utc": "2026-08-08T14:00:00+00:00",
"kickoff_ts": 1786197600,
"status": "finished",
"goals": { "home": 2, "away": 0 },
"corners": { "home": 8, "away": 3 },
"cards": { "home": { "yellow": 1, "red": 0 }, "away": { "yellow": 2, "red": 0 } }
}
],
"pagination": { "page": 1, "per_page": 50, "count": 1, "has_more": true }
}
Need a key? Create a free account — a working key is issued instantly, no card required.