Endpoint Playground
Test Crawlora's Yahoo Sports team roster 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/team-roster?league=nfl&team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
| team | string | Yes | Yahoo Sports team slug |
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"url": "https://sports.yahoo.com/nfl/teams/green-bay/"
},
"count": 53,
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/roster/",
"fetched_at": "2026-08-13T20:05:00Z",
"players": [
{
"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/"
}
]
}
}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 a team's full roster (position, jersey number, status, injury, physicals, college, and experience) from sports.yahoo.com's own server-rendered roster 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 team slug from the scoreboard or standings response (e.g. `green-bay`, `la-lakers`).
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"url": "https://sports.yahoo.com/nfl/teams/green-bay/"
},
"count": 53,
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/roster/",
"fetched_at": "2026-08-13T20:05:00Z",
"players": [
{
"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/"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/team-roster?league=<league>&team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"