Standings
GET
/standingsReturns the season ladder for a given year: wins, losses, draws, points for/against, percentage, and premiership points. Ordered by premiership points then percentage.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| year | integer | Yes | Season year |
Response
{
"data": [
{
"teamId": "sydney", "teamName": "Sydney Swans", "teamShortName": "SYD",
"played": 24, "wins": 17, "losses": 6, "draws": 1,
"pointsFor": 2156, "pointsAgainst": 1742,
"percentage": 123.77, "premiershipsPoints": 70
}
],
"meta": { "year": 2024, "count": 18 }
}