Quarterback order from the depth chart.
QB1 is the first quarterback on the depth chart. It is not sorted by yards. Passing and rushing totals on the row are 2025 regular-season numbers.
On the Stripe page, enter STARTER30 for 30% off the first month. Tryout at $9 is there if you only want to see the JSON.
Call
curl -s "https://api.clearsportsapi.com/api/v1/nfl/player-stats?team_id=nfl_phi" \
-H "Authorization: Bearer YOUR_API_KEY"Shape
{
"team_id": "nfl_phi",
"full_name": "Jalen Hurts",
"display_order": "QB1",
"position_display": "QB",
"player_image": "https://a.espncdn.com/i/headshots/nfl/players/full/4040715.png",
"passing_yards_att": 454,
"passing_yards_cmp": 294,
"passing_yards_yds": 3224,
"passing_yards_td": 25,
"rushing_yards_att": 105,
"rushing_yards_yds": 421,
"rushing_yards_td": 8,
"data_source": "espn",
"updated_date": 1790080893
}Rank
Filter position_display to QB and sort display_order. QB1, then QB2. The response also includes the rest of the roster.
Who the player is
full_name is the quarterback. The number at the end of player_image is the athlete id. id on the row is the stats row for that team.
What the stats are
The totals are the 2025 regular season. The row does not include a season column or games played. updated_date is when that row was last written.
FAQ
Is QB1 the statistical leader?
No. QB1 is the first quarterback listed on the current depth chart.
Which season are the passing yards from?
2025 regular season. A 2026 season column is not on the player row yet.
How often does the order change?
The depth chart and the totals are refreshed about every 30 minutes. Read updated_date on the row.