---
title: "Get league standings"
method: POST
path: "/leagues/{identifier}/standings"
tags: ["League Discovery"]
---

# Get league standings

`POST /leagues/{identifier}/standings`

Returns approved teams with their season stats, ranked by standings position, for a league resolved by slug. Requires the leagues.league_public:read permission.

## Path parameters

- `identifier` string, required — League slug.

## Request body

- StandingsRequestBody — Season and game filters for league standings.
  - `seasonId` string — Filter standings to a specific season id.
  - `gameId` string — Filter standings to a specific game id.
  - `limit` integer — Maximum number of teams to return (1-100). Defaults to 50.

## Response `200`

League standings for the requested season.

- LeagueStandings — League standings for a season.
  - `standings` object[], required — Approved teams with season stats, ordered by standings position. Each item is a team-with-stats document plus a computed rank.
    - `rank` integer, required — 1-based standings position.
  - `count` integer, required — Number of teams returned.
  - `timestamp` string, required — Response generation time (ISO 8601).

## Other responses

- `400` — Bad request (invalid body, cursor, limit, or date).
- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.

---

[API](https://skmtc.net/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.net/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/versions/2ffe8fb53b7d/schema)
