Endpoint Playground
Test Crawlora's Yahoo Sports team schedule 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-schedule?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": 25,
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/schedule/",
"fetched_at": "2026-08-13T20:05:00Z",
"games": [
{
"id": "nfl.g.20260110003",
"slug": "green-bay-packers-chicago-bears-20260110003",
"display_name": "Green Bay @ Chicago - Wild Card Playoff",
"status": "FINAL",
"status_display": "Final",
"start_time": "2026-01-10T13:00:00-08:00",
"away_team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"abbreviation": "GB"
},
"home_team": {
"id": "nfl.t.3",
"name": "Chicago Bears",
"abbreviation": "CHI"
},
"away_score": 27,
"home_score": 31
}
]
}
}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 schedule (regular season plus any already-played/scheduled playoff games), with the same per-game fields as the scoreboard, from sports.yahoo.com's own server-rendered team schedule 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": 25,
"source_url": "https://sports.yahoo.com/nfl/teams/green-bay/schedule/",
"fetched_at": "2026-08-13T20:05:00Z",
"games": [
{
"id": "nfl.g.20260110003",
"slug": "green-bay-packers-chicago-bears-20260110003",
"display_name": "Green Bay @ Chicago - Wild Card Playoff",
"status": "FINAL",
"status_display": "Final",
"start_time": "2026-01-10T13:00:00-08:00",
"away_team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"abbreviation": "GB"
},
"home_team": {
"id": "nfl.t.3",
"name": "Chicago Bears",
"abbreviation": "CHI"
},
"away_score": 27,
"home_score": 31
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/team-schedule?league=<league>&team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"