get api key →

Fixture (Public)

GET /fixture Public

Returns the season fixture (schedule) sourced from the Squiggle API. This is the only endpoint that does not require authentication.

Query Parameters

NameTypeRequiredDescription
yearintegerNoSeason year (default: current year). Range: 2000 to next year.

Example

# No auth required
curl /api/afl/v1/fixture?year=2026

Response

{
  "year": 2026,
  "games": [ ... ]  // Squiggle fixture data
}