# `ExFPL.Leagues.Classic`
[🔗](https://github.com/sgerrand/ex_fpl/blob/main/lib/ex_fpl/leagues/classic.ex#L1)

Fetch classic-league standings from `/leagues-classic/{league_id}/standings/`.

# `standings`

```elixir
@spec standings(
  integer(),
  keyword()
) :: {:ok, ExFPL.ClassicStandings.t() | map()} | {:error, term()}
```

Fetch one page of classic-league standings.

Pass `page: N` (default `1`) to paginate; ExFPL returns 50 entries per page.
Pass `raw: true` to receive the raw JSON-decoded map.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
