Endpoint Playground
Test Crawlora's Yahoo Sports team 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/team?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",
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/",
"fetched_at": "2026-08-13T20:05:00Z",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"abbreviation": "GB",
"nickname": "Packers",
"primary_color": "203731",
"secondary_color": "FFB612",
"url": "https://sports.yahoo.com/nfl/teams/green-bay/",
"conference": "NFC",
"division": "NFC North",
"standing_summary": "4th NFC North",
"record": {
"wins": 0,
"losses": 0,
"win_pct": ".000",
"display": "0-0"
}
}
}
}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 team's detail (identity, colors, conference/division, and current standing summary) from sports.yahoo.com's own server-rendered team 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",
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/",
"fetched_at": "2026-08-13T20:05:00Z",
"team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"abbreviation": "GB",
"nickname": "Packers",
"primary_color": "203731",
"secondary_color": "FFB612",
"url": "https://sports.yahoo.com/nfl/teams/green-bay/",
"conference": "NFC",
"division": "NFC North",
"standing_summary": "4th NFC North",
"record": {
"wins": 0,
"losses": 0,
"win_pct": ".000",
"display": "0-0"
}
}
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/team?league=<league>&team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"