Fetch standings for all teams in a league, sorted by wins descending
The league
import { Standings, Enums } from '@mikelaferriere/espn-api';const standings = await Standings.fetchStandings(Enums.League.NFL);console.log(standings[0].team.displayName); // Team with most wins Copy
import { Standings, Enums } from '@mikelaferriere/espn-api';const standings = await Standings.fetchStandings(Enums.League.NFL);console.log(standings[0].team.displayName); // Team with most wins
Fetch standings for all teams in a league, sorted by wins descending