Endpoint Playground
Test Crawlora's Yahoo Sports player detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yahoo-sports/player?league=nfl&player=<player>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
| player | string | Yes | Numeric Yahoo Sports player id |
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"source_url": "https://sports.yahoo.com/nfl/players/42019/",
"fetched_at": "2026-08-13T20:05:00Z",
"player": {
"id": "nfl.p.42019",
"name": "John Williams",
"position": "G",
"number": "73",
"status": "ACT",
"injury": "Questionable",
"age": 24,
"height": "6'4\"",
"weight": 322,
"college": "Cincinnati",
"experience_years": 2,
"url": "https://sports.yahoo.com/nfl/players/42019/",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"abbreviation": "GB"
},
"draft_year": 2025,
"draft_round": 7,
"draft_pick": 34,
"season_stats": []
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one player's bio/overview (position, jersey, status, injury, physicals, college, draft position) plus current-season stats by category, from sports.yahoo.com's own server-rendered player page. The `league` enum accepts `nfl`, `nba`, `wnba`, `mlb`, `nhl`, `college-football`, `college-basketball`, `college-womens-basketball`, `mls`, `premier-league`, `la-liga`, `serie-a`, `bundesliga`, `ligue-1`, `nwsl`, `ligamx-apertura`, `ligamx-clausura`, `copa-america`, `club-world-cup`, `world-cup`, `concacaf-champions-cup`, `concacaf-gold-cup`, `concacaf-league`, and `champions-league`. Get a numeric player id from a roster response's player `url` (the last path segment).
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"source_url": "https://sports.yahoo.com/nfl/players/42019/",
"fetched_at": "2026-08-13T20:05:00Z",
"player": {
"id": "nfl.p.42019",
"name": "John Williams",
"position": "G",
"number": "73",
"status": "ACT",
"injury": "Questionable",
"age": 24,
"height": "6'4\"",
"weight": 322,
"college": "Cincinnati",
"experience_years": 2,
"url": "https://sports.yahoo.com/nfl/players/42019/",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"abbreviation": "GB"
},
"draft_year": 2025,
"draft_round": 7,
"draft_pick": 34,
"season_stats": []
}
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/player?league=<league>&player=<player>" \
-H "x-api-key: $CRAWLORA_API_KEY"