Endpoint Playground
Test Crawlora's Yahoo Sports standings 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/standings?league=nfl" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
{
"code": 200,
"msg": "OK",
"data": {
"league": "mlb",
"count": 30,
"source_url": "https://sports.yahoo.com/mlb/standings/",
"fetched_at": "2026-08-13T20:05:00Z",
"groups": [
{
"conference": "American League",
"division": "East",
"entries": [
{
"team": {
"id": "mlb.t.2",
"name": "Boston",
"abbreviation": "BOS"
},
"record": {
"wins": 64,
"losses": 56,
"win_pct": ".533",
"display": "64-56"
},
"home_record": "29-31",
"away_record": "35-25",
"last10": "5-5",
"streak": "L-5",
"games_back": 10,
"position": 3
}
]
}
]
}
}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 league standings (record, streak, games back, and clinch status) grouped by conference/division, from sports.yahoo.com's own server-rendered standings page. The `league` enum accepts `nfl`, `nba`, `wnba`, `mlb`, `nhl`, `college-football`, `college-basketball`, `mls`, `premier-league`, `la-liga`, `serie-a`, `bundesliga`, `ligue-1`, `nwsl`, `ligamx-apertura`, `ligamx-clausura`, `world-cup`, and `champions-league` (not `college-womens-basketball`, whose standings page does not embed a full grouped table). Soccer leagues return a single ungrouped table (no conference/division) and each entry's `record.points` is populated (3 per win, 1 per draw).
{
"code": 200,
"msg": "OK",
"data": {
"league": "mlb",
"count": 30,
"source_url": "https://sports.yahoo.com/mlb/standings/",
"fetched_at": "2026-08-13T20:05:00Z",
"groups": [
{
"conference": "American League",
"division": "East",
"entries": [
{
"team": {
"id": "mlb.t.2",
"name": "Boston",
"abbreviation": "BOS"
},
"record": {
"wins": 64,
"losses": 56,
"win_pct": ".533",
"display": "64-56"
},
"home_record": "29-31",
"away_record": "35-25",
"last10": "5-5",
"streak": "L-5",
"games_back": 10,
"position": 3
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/standings?league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"