Search

Find the right NFLMeta page before you guess the path.

Search across product pages, pricing, trust, status, installation, FAQ, and the full API docs system from one place.

Best ForKnown concept, unknown page

If you know you need quota help, venue identifiers, pricing, or weather routes, start here.

Best ForDocs plus product

This combines the docs system with the surrounding public product pages instead of limiting search to docs only.

Best ForFast path to action

Results include quickstarts, recipes, changelogs, and endpoint references so users can move immediately.

Search

Search Pages, Docs, Recipes, And Endpoints

Use one search surface for pricing, trust, status, installation, FAQ, and the full API docs system.

165 searchable entries
SitePricing Plans

Compare free, starter, pro, and business plans, monthly quotas, and who each tier is for.

SiteTrust Center

Platform trust posture, data ownership model, operational controls, and support commitments.

SiteFAQ

Common answers about access, identifiers, endpoint choice, coverage, and integration flow.

SiteInstallation

Fastest path from account creation to the first successful request in curl, JavaScript, and Python.

SiteStatus

Platform health, recent incidents, uptime posture, and operational change visibility.

SiteProduct Changelog

Public release notes for docs, auth, search, customer flows, and product-level changes.

SiteAPI Changelog

API-facing contract changes, docs-surface updates, and integration-relevant improvements.

PageOverview

What the API is, who it is for, and where to start.

PageQuickstart

First successful request, auth header, and core model.

PageAuthentication

Headers, limits, quota signals, and failure responses.

PageFinding Identifiers

How to discover keys and ids before item routes.

PageSDKs

Official TypeScript/JavaScript and Python SDKs, package names, usage patterns, and escape hatches.

PageDocs Search

Search pages, endpoints, recipes, and identifier patterns.

PageCore Endpoints

Curated, app-facing endpoint families.

PageReference Data

Raw and historical surfaces for ETL and research.

PageRecipes

Common tasks with copy-paste examples.

PageChangelog

Recent platform and contract changes that matter.

QuickstartStart with one team object

Best first request if you want to confirm auth, inspect shape, and understand the slice-and-field model.

/api/v1/teams/NE
QuickstartFetch one single field

Best first drilldown request when you want the smallest stable payload possible.

/api/v1/season/2024/champion_team_abbr
QuickstartInspect one full game object

Best first app-style payload if your integration is schedule, recaps, matchups, or game detail heavy.

/api/v1/games/11565
QuickstartPull one raw reference row

Best first raw export request if you are evaluating warehouse or ETL-style access.

/api/v1/reference/venues/geha-field-at-arrowhead-stadium
IdentifierFind a team abbreviation

Use the teams list first when you do not already know the canonical NFL abbreviation used by team routes.

GET /api/v1/teams?q=ravens -> Use the returned abbr with /api/v1/teams/{abbr} and team subroutes
IdentifierFind a game id

Use the games index first, then take the returned id into the single-game routes.

GET /api/v1/games?season=2024&team=PIT -> Use the returned id with /api/v1/games/{id}, /api/v1/games/{id}/{field}, or /api/v1/games/{id}/extras
IdentifierFind a player key

Use the player catalog/list endpoint first, then copy the canonical player_key from the matching row.

GET /api/v1/players?q=lamar -> Use the returned player_key with /api/v1/players/{player_key} and player subroutes
IdentifierFind a coach key

Use the coach list endpoint first if you do not already know the canonical coach_key slug.

GET /api/v1/coaches?q=tomlin -> Use the returned coach_key with /api/v1/coaches/{coach_key} and coach subroutes
IdentifierFind a contributor key

Use the contributor list endpoint first when you know the contributor name but not the canonical contributor_key.

GET /api/v1/contributors?search=nunn -> Use the returned contributor_key with /api/v1/contributors/{contributor_key} and contributor subroutes
IdentifierFind a staff key

Use the staff list endpoint first when you know the current coach or staffer name but not the canonical staff_key.

GET /api/v1/staff?search=cignetti -> Use the returned staff_key with /api/v1/staff/{staff_key} and staff subroutes
IdentifierFind an executive key

Use the executive list endpoint first when you know the executive name or team text but not the canonical executive_key.

GET /api/v1/executives?search=kraft -> Use the returned executive_key with /api/v1/executives/{executive_key} and executive subroutes
IdentifierFind a Hall of Fame election year

Use the Hall of Fame list first when you want to inspect ballot coverage, then switch to one election-year route.

GET /api/v1/hall-of-fame?year_from=2021&year_to=2021 -> Use the returned year with /api/v1/hall-of-fame/{election_year} and /api/v1/hall-of-fame/{election_year}/{field}
IdentifierFind a venue key

Use the raw venue reference list first when you need a canonical venue_key for one stadium or historical venue record.

GET /api/v1/reference/venues?q=arrowhead -> Use the returned venue_key with /api/v1/reference/venues/{venue_key}
IdentifierFind an official key

Use the raw officials reference list first when you want the canonical official_key for one referee or crew member.

GET /api/v1/reference/officials?q=blakeman -> Use the returned official_key with /api/v1/reference/officials/{official_key}
IdentifierFind a playoff game id

Start from the Super Bowl or playoff summary routes, then take the returned playoff game id into postseason detail routes.

GET /api/v1/super-bowls/2024 or GET /api/v1/playoffs/picture?season=2024 -> Use the returned id with /api/v1/playoff-games/{id}, /api/v1/playoff-games/{id}/{field}, or /api/v1/playoff-games/{id}/extras
IdentifierFind a season year

Season routes use the canonical year directly, so discover it from the season catalog if you are browsing available coverage.

GET /api/v1/seasons -> Use the returned year with /api/v1/season/{year} and season subroutes
RecipeGet one coach profile

Use the coach page route when you want the main coach object for a single person.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/coaches/mike-vrabel
RecipeGet one contributor profile

Use the contributor route when the person lives in NFLMeta as a Hall of Fame contributor rather than a player, coach, or executive.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/contributors/bill-nunn
RecipeGet one current staff profile

Use the staff route when you want the current assistant, coordinator, or support-staff profile for one person.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/staff/frank-cignetti-jr
RecipeGet one executive career slice

Use the executive career slice when you need tenure and role context without the full profile payload.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/executives/robert-kraft/career
RecipeGet one game field only

Use a field drilldown when you need a single value like weather, stadium, or kickoff.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/games/11565/weather
RecipeGet one team stadium field

Use a focused team slice or a team field drilldown instead of loading the full team payload.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/teams/NE/stadium/city
RecipeGet one season outcome

Season drilldowns are the easiest way to fetch one season-level result like champion, winner, or summary fields.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/season/2024/champion_team_abbr
RecipeGet one raw venue record

Use reference endpoints when you want a row that stays close to the underlying table shape.

curl -H 'X-NFLMeta-Key: YOUR_KEY' https://nflmeta.org/api/v1/reference/venues/geha-field-at-arrowhead-stadium
RecipeTypeScript / JavaScript client

Use the TypeScript SDK when your app already runs in Node or modern JavaScript and you want typed resource clients instead of hand-built fetch calls.

@nfldb/sdk
RecipePython client

Use the Python SDK for scripts, notebooks, internal tools, and research workflows that want a thin synchronous client with the same resource model.

nfldb
RecipeRaw escape hatch

Keep using the SDK even when a new route ships before a dedicated wrapper method. The low-level get method preserves auth, rate-limit parsing, and the standard response envelope.

Both SDKs
EndpointList curated image assets

Direct asset discovery for logos or image catalogs.

/api/v1/assets/images
EndpointList logo assets

Direct asset discovery for logos or image catalogs.

/api/v1/assets/logos
EndpointGet curated coach profile

Returns a structured coach resource with identity, bio, career, and history slices.

/api/v1/coaches/{coach_key}
EndpointGet coach bio slice

Returns birth, college, playing-background, and narrative bio fields for one coach.

/api/v1/coaches/{coach_key}/bio
EndpointGet one coach bio field

Returns a single field from the coach bio slice. Supported fields include birth_date, birth_place, death_date, death_place, college_name, playing_position, bio_summary, did_you_know, playing_career_summary, playing_college_years, pro_football_hall_of_fame_year, playing_nfl_years, playing_nfl_teams, and played_in_nfl.

/api/v1/coaches/{coach_key}/bio/{field}
EndpointGet coach career slice

Returns aggregate coaching results and title metrics for one coach.

/api/v1/coaches/{coach_key}/career
EndpointGet one coach career field

Returns a single field from the coach career slice. Supported fields include first_year, last_year, years_total, regular_games, regular_wins, regular_losses, regular_ties, regular_win_pct, playoff_years, playoff_games, playoff_wins, playoff_losses, playoff_win_pct, championships, super_bowls, conference_titles, average_rank, and best_rank.

/api/v1/coaches/{coach_key}/career/{field}
EndpointGet coach history slice

Returns team history, award summaries, team-record stints, and stadium summaries for one coach.

/api/v1/coaches/{coach_key}/history
EndpointGet coach identity slice

Returns name, photo, Hall of Fame, and rank fields for one coach.

/api/v1/coaches/{coach_key}/identity
EndpointGet one coach identity field

Returns a single field from the coach identity slice. Supported fields include coach_key, display_name, source_name, photo_path, hall_of_fame, and rank.

/api/v1/coaches/{coach_key}/identity/{field}
EndpointList contributors

Returns contributor-only Hall of Fame people not currently represented as players, coaches, or executives.

/api/v1/contributors
EndpointGet curated contributor profile

Returns a structured contributor resource with identity, bio, and Hall of Fame history slices.

/api/v1/contributors/{contributor_key}
EndpointGet contributor bio slice

General bio lookups and app-facing reads.

/api/v1/contributors/{contributor_key}/bio
EndpointGet one contributor bio field

General bio lookups and app-facing reads.

/api/v1/contributors/{contributor_key}/bio/{field}
EndpointGet contributor history slice

General history lookups and app-facing reads.

/api/v1/contributors/{contributor_key}/history
EndpointGet one contributor history field

Historical reference browsing for logos, officials, stadiums, or venues.

/api/v1/contributors/{contributor_key}/history/{field}
EndpointGet contributor identity slice

General identity lookups and app-facing reads.

/api/v1/contributors/{contributor_key}/identity
EndpointGet one contributor identity field

General identity lookups and app-facing reads.

/api/v1/contributors/{contributor_key}/identity/{field}
EndpointList executives

Returns executive reference rows with optional search, team-text, and Hall of Fame filters.

/api/v1/executives
EndpointGet curated executive profile

Returns a structured executive resource with identity, bio, career, and history slices.

/api/v1/executives/{executive_key}
EndpointGet executive bio slice

General bio lookups and app-facing reads.

/api/v1/executives/{executive_key}/bio
EndpointGet one executive bio field

General bio lookups and app-facing reads.

/api/v1/executives/{executive_key}/bio/{field}
EndpointGet executive career slice

General career lookups and app-facing reads.

/api/v1/executives/{executive_key}/career
EndpointGet one executive career field

General career lookups and app-facing reads.

/api/v1/executives/{executive_key}/career/{field}
EndpointGet executive history slice

General history lookups and app-facing reads.

/api/v1/executives/{executive_key}/history
EndpointGet one executive history field

Historical reference browsing for logos, officials, stadiums, or venues.

/api/v1/executives/{executive_key}/history/{field}
EndpointGet executive identity slice

General identity lookups and app-facing reads.

/api/v1/executives/{executive_key}/identity
EndpointGet one executive identity field

General identity lookups and app-facing reads.

/api/v1/executives/{executive_key}/identity/{field}
EndpointQuery games index

Browse regular-season and playoff games with simple season, week, team, and date filters. Start here when you need to discover a game id before calling a detail endpoint.

/api/v1/games
EndpointGet game detail

Single-game detail pages, matchup views, and field-level game reads.

/api/v1/games/{id}
EndpointGet one game detail field

Returns a single top-level field from the regular game detail payload. Supported fields include id, season_year, week, round, game_date, kickoff_at, title, away_team, home_team, away_coach, home_coach, away_score, home_score, stadium, broadcast_network, announcers, summary, and is_playoff.

/api/v1/games/{id}/{field}
EndpointGet regular game extras

Rich game detail pages that need joined metadata without chaining many requests.

/api/v1/games/{id}/extras
EndpointList Hall of Fame nominees

Returns Hall of Fame nominee rows across election years with optional year, role, ballot, and inductee filters.

/api/v1/hall-of-fame
EndpointGet one Hall of Fame election year

Returns the grouped nominee ballot for one election year.

/api/v1/hall-of-fame/{election_year}
EndpointGet one Hall of Fame election-year field

Returns a single field from the Hall of Fame election-year payload. Supported fields include election_year, total_nominees, inductee_count, and groups.

/api/v1/hall-of-fame/{election_year}/{field}
EndpointList stadium history timeline

Historical reference browsing for logos, officials, stadiums, or venues.

/api/v1/history/stadiums
EndpointList team logo history timeline

Historical reference browsing for logos, officials, stadiums, or venues.

/api/v1/history/team-logos
EndpointList coaches

General coaches lookups and app-facing reads.

/api/v1/coaches
EndpointGet API metadata payload

Lightweight product capability checks and public demo surfaces.

/api/v1/show
EndpointService health status

General health lookups and app-facing reads.

/api/v1/health
EndpointGet player bio slice

Returns a smaller bio-focused player payload with birth, size, college, and draft fields.

/api/v1/players/{player_key}/bio
EndpointGet one player bio field

Returns a single field from the player bio slice.

/api/v1/players/{player_key}/bio/{field}
EndpointGet player career totals

Returns the persisted normalized career totals row for one player from `player_career_stats`, including core totals plus expanded snap, advanced, explosive-play, and specialist fields when present.

/api/v1/players/{player_key}/career
EndpointGet one player career field

Returns a single field from the player career totals payload.

/api/v1/players/{player_key}/career/{field}
EndpointGet player season-by-season career stats

Returns persisted normalized season rows from `player_career_stat_seasons` for one player, including core stat totals plus expanded snap, advanced, explosive-play, and specialist columns.

/api/v1/players/{player_key}/career/seasons
EndpointGet player game logs

Returns game-by-game stat lines for one player. Use season and week filters for granular lookups like a quarterback's passing yards, touchdowns, and interceptions in a specific week.

/api/v1/players/{player_key}/games
EndpointGet player honors slice

Returns only player honors data, split into Pro Bowls, All-Pro selections, awards, and Hall of Fame status.

/api/v1/players/{player_key}/honors
EndpointGet one player honors field

Returns a single field from the player honors slice.

/api/v1/players/{player_key}/honors/{field}
EndpointGet player identity slice

Returns a smaller identity-focused player payload with name, team, position, status, and hero-card fields.

/api/v1/players/{player_key}/identity
EndpointGet one player identity field

Returns a single field from the player identity slice. Supported fields include player_key, display_name, football_name, first_name, last_name, position_group, position, latest_team_abbr, jersey_number, rookie_season, last_season, status, years_of_experience, and headshot_url.

/api/v1/players/{player_key}/identity/{field}
EndpointGet player external ids

Returns canonical external ids for a single player.

/api/v1/players/{player_key}/ids
EndpointGet one player id field

Returns a single field from the player ids slice.

/api/v1/players/{player_key}/ids/{field}
EndpointGet player kicking season rows

Returns season-level kicking rows from `player_kicker_season_stats` for one player. Use the season and field drilldowns when the client only needs one season or one stat.

/api/v1/players/{player_key}/kicking
EndpointGet one player kicking season row

Returns one season-level kicking row for a player.

/api/v1/players/{player_key}/kicking/{season_year}
EndpointGet one player kicking season field

Returns one top-level field from a player's season-level kicking row.

/api/v1/players/{player_key}/kicking/{season_year}/{field}
EndpointGet player punting season rows

Returns season-level punting rows from `player_punter_season_stats` for one player. Use the season and field drilldowns when the client only needs one season or one stat.

/api/v1/players/{player_key}/punting
EndpointGet one player punting season row

Returns one season-level punting row for a player.

/api/v1/players/{player_key}/punting/{season_year}
EndpointGet one player punting season field

Returns one top-level field from a player's season-level punting row.

/api/v1/players/{player_key}/punting/{season_year}/{field}
EndpointGet player best game and season records

Returns career total, best season, and best game snapshots for a configurable list of stats.

/api/v1/players/{player_key}/records
EndpointGet one player records field

Returns a single top-level field from the player records payload.

/api/v1/players/{player_key}/records/{field}
EndpointGet player roster history slice

Returns only roster-history rows for one player.

/api/v1/players/{player_key}/roster
EndpointGet player game splits

Returns aggregated game-log totals for one player with split buckets for season type, team, opponent, home/away, and result.

/api/v1/players/{player_key}/splits
EndpointGet one player splits field

Returns a single top-level field from the player splits payload.

/api/v1/players/{player_key}/splits/{field}
EndpointGet playoff game detail

Single playoff game pages and postseason game detail fetches.

/api/v1/playoff-games/{id}
EndpointGet one playoff game detail field

Returns a single top-level field from the playoff game detail payload. Supported fields include id, season_year, week, round, game_date, kickoff_at, title, away_team, home_team, away_coach, home_coach, away_score, home_score, stadium, broadcast_network, announcers, summary, and is_playoff.

/api/v1/playoff-games/{id}/{field}
EndpointGet playoff game extras

Postseason matchup pages that need game context plus related joins.

/api/v1/playoff-games/{id}/extras
EndpointGet playoff picture

Playoff picture and postseason qualification snapshots.

/api/v1/playoffs/picture
EndpointGet raw coach record

Returns the table-shaped raw coach row for one coach key, including source columns and parsed raw_row data when present.

/api/v1/reference/coaches/{coach_key}
EndpointGet one raw coach field

Returns a single field from the raw coach record.

/api/v1/reference/coaches/{coach_key}/{field}
EndpointGet raw official record

Returns the table-shaped raw official row for one official key, including parsed raw_row data when present.

/api/v1/reference/officials/{official_key}
EndpointGet one raw official field

Returns a single field from the raw official record.

/api/v1/reference/officials/{official_key}/{field}
EndpointGet raw venue record

Returns the table-shaped raw venue row for one venue key, including parsed raw_row data when present.

/api/v1/reference/venues/{venue_key}
EndpointGet one raw venue field

Returns a single field from the raw venue record.

/api/v1/reference/venues/{venue_key}/{field}
EndpointGet bye weeks by season year

General byes lookups and app-facing reads.

/api/v1/byes/{year}
EndpointGet season summary by year

Season summary reads and one-field season outcomes.

/api/v1/season/{year}
EndpointGet one season summary field

Returns a single field from the main season summary payload. Supported fields include season_year, super_bowl, winner, runner_up, final_score, mvp, and summary.

/api/v1/season/{year}/{field}
EndpointList seasons

Season catalogs and year browsing.

/api/v1/seasons
EndpointList current staff

Returns current staff rows from the active team staff dataset with search, team, role-group, title, and linked-coach filters.

/api/v1/staff
EndpointGet curated staff profile

Returns a structured current staff resource with identity, bio, career, and source-history slices.

/api/v1/staff/{staff_key}
EndpointGet staff bio slice

General bio lookups and app-facing reads.

/api/v1/staff/{staff_key}/bio
EndpointGet one staff bio field

General bio lookups and app-facing reads.

/api/v1/staff/{staff_key}/bio/{field}
EndpointGet staff career slice

General career lookups and app-facing reads.

/api/v1/staff/{staff_key}/career
EndpointGet one staff career field

General career lookups and app-facing reads.

/api/v1/staff/{staff_key}/career/{field}
EndpointGet staff source-history slice

General history lookups and app-facing reads.

/api/v1/staff/{staff_key}/history
EndpointGet one staff history field

Historical reference browsing for logos, officials, stadiums, or venues.

/api/v1/staff/{staff_key}/history/{field}
EndpointGet staff identity slice

General identity lookups and app-facing reads.

/api/v1/staff/{staff_key}/identity
EndpointGet one staff identity field

General identity lookups and app-facing reads.

/api/v1/staff/{staff_key}/identity/{field}
EndpointGet standings

Standings tables and week-to-week ranking views.

/api/v1/standings
EndpointQuery cross-player career total leaderboards

Returns player career total rows across the whole database, ranked by the requested stat column. Supports raw totals plus normalized snap, advanced, explosive-play, and specialist fields. Position filters use season-derived historical career metadata from `player_career_stats`. Use `/api/v1/stats/players/catalog` for the live stat allowlist.

/api/v1/stats/players/careers
EndpointQuery one career stat leaderboard by path

Path-based shortcut for cross-player career leaderboards. Equivalent to `/api/v1/stats/players/careers?stat=...` with the stat encoded in the route.

/api/v1/stats/players/careers/{stat}
EndpointDiscover player stats query fields

Returns the live supported stat columns and filter names for the player season and career stats query endpoints. Use this instead of hardcoding stat allowlists.

/api/v1/stats/players/catalog
EndpointCompare multiple players

Returns profile, career totals, season rows, and optional game-log aggregate totals for a set of players.

/api/v1/stats/players/compare
EndpointQuery cross-player game stat logs

Returns player game rows across the database, ranked by the requested game stat column. Supports `season_type=REG|POST|ALL` plus team, opponent, home/away, result, and week-range split filters. Regular-season rows use PFR boxscore data; postseason rows use the structured playoff stat tables.

/api/v1/stats/players/games
EndpointQuery game leaders by stat family

Family-specific wrapper around the player game leaderboard endpoint with a sensible default stat for each family.

/api/v1/stats/players/games/leaders/{stat_family}
EndpointAggregate game stats into split buckets

Builds grouped split summaries from the cross-player player game stat query, including top leaders in each bucket.

/api/v1/stats/players/games/splits
EndpointSearch players with stat coverage metadata

Player search endpoint with attached career coverage and season-row availability metadata.

/api/v1/stats/players/search
EndpointQuery weekly player leaders for a season

Groups cross-player game leaderboard output into weekly or playoff-round buckets and ranks leaders inside each bucket.

/api/v1/stats/players/season/{season_year}/weeks
EndpointQuery cross-player season stat leaderboards

Returns player season rows across the whole database, filtered by season and ranked by the requested stat column. Supports raw totals plus normalized snap, advanced, explosive-play, and specialist fields. Season team and season position fields reflect the historical season row, not the player's current profile. Use `/api/v1/stats/players/catalog` for the live stat allowlist.

/api/v1/stats/players/seasons
EndpointQuery one season stat leaderboard by path

Path-based shortcut for cross-player season leaderboards. Equivalent to `/api/v1/stats/players/seasons?season_year=...&stat=...` with both values encoded in the route.

/api/v1/stats/players/seasons/{season_year}/{stat}
EndpointQuery player production by team stint

Aggregates player season stat rows by player and team abbreviation so traded-player output can be analyzed by stint.

/api/v1/stats/players/teams
EndpointList super bowl records

Super Bowl histories, franchise appearances, and championship summaries.

/api/v1/super-bowls
EndpointGet super bowl for season

Super Bowl histories, franchise appearances, and championship summaries.

/api/v1/super-bowls/{season_year}
EndpointGet super bowl record for team

Single-team detail views and lightweight team drilldowns.

/api/v1/super-bowls/teams/{abbr}
EndpointList teams

General teams lookups and app-facing reads.

/api/v1/teams
EndpointTeam profile snapshot

Single-team detail views and lightweight team drilldowns.

/api/v1/teams/{abbr}
EndpointTeam recent games

Team schedule, recent games, and franchise-specific game browsing.

/api/v1/teams/{abbr}/games
EndpointTeam identity slice

Returns a smaller team identity payload with canonical team fields and available season years.

/api/v1/teams/{abbr}/identity
EndpointGet one team identity field

Returns a single field from the team identity slice. Supported fields include id, abbr, city, nickname, fullName, conference, division, gameCount, and seasonYears.

/api/v1/teams/{abbr}/identity/{field}
EndpointTeam power rankings slice

Returns only power ranking rows for one team season.

/api/v1/teams/{abbr}/power-rankings
EndpointGet one team power rankings field

Returns a single field from the team power rankings slice.

/api/v1/teams/{abbr}/power-rankings/{field}
EndpointTeam Pro Bowl slice

Returns only the resolved Pro Bowl roster for one team season.

/api/v1/teams/{abbr}/pro-bowl
EndpointGet one team Pro Bowl field

Returns a single field from the team Pro Bowl slice.

/api/v1/teams/{abbr}/pro-bowl/{field}
EndpointTeam profile with extras

Broader team detail pages that need an app-ready combined object.

/api/v1/teams/{abbr}/profile
EndpointGet one team profile field

Returns a single top-level field from the full team profile payload.

/api/v1/teams/{abbr}/profile/{field}
EndpointTeam season slice

Returns only the season-specific profile fields for one team, without extras.

/api/v1/teams/{abbr}/season
EndpointGet one team season field

Returns a single field from the team season slice.

/api/v1/teams/{abbr}/season/{field}
EndpointTeam stadium slice

Returns only the resolved stadium payload for one team season.

/api/v1/teams/{abbr}/stadium
EndpointGet one team stadium field

Returns a single field from the team stadium slice.

/api/v1/teams/{abbr}/stadium/{field}
EndpointTeam stats slice

Returns only the offense, defense, and special teams stat groups for one team season.

/api/v1/teams/{abbr}/stats
EndpointGet one team stats field

Returns a single field from the team stats slice.

/api/v1/teams/{abbr}/stats/{field}
EndpointGet current API key usage and quota

Programmatic quota and usage checks from client dashboards or internal tooling.

/api/v1/usage