Fixture (Public)
GET
/fixture PublicReturns the season fixture (schedule) sourced from the Squiggle API. This is the only endpoint that does not require authentication.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| year | integer | No | Season 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
}