Yahoo Sports API endpoint
Use Crawlora's Yahoo Sports Golf Leaderboard API to extract supported public Yahoo Sports data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/yahoo-sports/golf-leaderboardReturns one golf tournament's full leaderboard (every golfer's rank, to-par score, status, holes-completed-in-current-round, per-round strokes, and a fixed stat set: earnings, eagles, birdies, pars, bogeys, double bogeys), from Yahoo Sports' own public tournament-leaderboard JSON API. Get the `tournament` id from a golf-schedule response's `id` field, e.g. `golf.e.23`. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| tournament | string | Yes | Yahoo Sports golf tournament id from a golf-schedule response's id field | ||
| season | integer | No | the tournament's most recent season | 4-digit season year (a tournament id is reused across years); defaults to the tournament's most recent season | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/yahoo-sports/golf-leaderboard" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `entries` preserves Yahoo's own leaderboard ordering (by rank). - `rank` is a string and may carry a tie prefix, e.g. `T1`. - `score`/`score_display` are relative to par for the whole tournament (e.g. `-22`, `E`, `+3`); each entry in `rounds` carries the same pair for that round alone. - `status` is one of `IN_PROGRESS`, `FINISHED`, `MISSED_CUT`, `WITHDRAWN`, or `DISQUALIFIED`. A golfer keeps a real `rank`/`score` even after missing the cut, withdrawing, or being disqualified — these are not blanked out. - `thru` is the golfer's holes-completed count for the tournament's current round specifically (`tournament.current_round`), not simply their furthest-along round — a golfer who has already finished today's round still reports that round's holes-completed (typically 18) rather than 0 from tomorrow's not-yet-started round. - `rounds` is round-level only (strokes and to-par score per round); full hole-by-hole shot detail is not included, matching this platform's existing game-boxscore-stops-at-team-totals convention. - `stats` is a fixed set (earnings, eagles, birdies, pars, bogeys, double bogeys) matching what Yahoo's own tournament page requests by default; a zero-valued stat is omitted. - Invalid `tournament` values return an invalid-parameter error before upstream IO; an unknown tournament id returns a 404. Example response: ```json { "code": 200, "msg": "OK", "data": { "tour": "pga-tour", "season": 2026, "tournament": { "id": "golf.e.17", "name": "Wyndham Championship", "status": "FINAL", "start_date": "2026-08-06-07:00", "end_date": "2026-08-09-07:00", "current_round": 4, "rounds": 4, "purse": "8500000.00", "venue": { "name": "Sedgefield Country Club", "city": "Greensboro", "state": "North Carolina", "country": "United States" }, "url": "https://sports.yahoo.com/golf/pga-tour/2026/wyndham-championship/" }, "count": 147, "source_url": "https://graphite.sports.yahoo.com/v1/query/shangrila/playbookGolfTournament?...", "fetched_at": "2026-08-14T07:05:00Z", "entries": [ { "rank": "1", "player": { "id": "golf.p.24201", "name": "Michael Brennan", "short_name": "M. Brennan", "country": "United States", "url": "https://sports.yahoo.com/golf/players/Michael+Brennan/24201/" }, "score": -22, "score_display": "-22", "status": "FINISHED", "thru": 18, "rounds": [ { "round": 1, "strokes": 66, "score": -4, "score_display": "-4" }, { "round": 2, "strokes": 65, "score": -5, "score_display": "-5" }, { "round": 3, "strokes": 63, "score": -7, "score_display": "-7" }, { "round": 4, "strokes": 64, "score": -6, "score_display": "-6" } ], "stats": { "earnings": "$1530000.00", "eagles": 1, "birdies": 25, "pars": 42, "bogeys": 3, "double_bogeys": 1 } } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"tour": "pga-tour",
"season": 2026,
"tournament": {
"id": "golf.e.17",
"name": "Wyndham Championship",
"status": "FINAL",
"start_date": "2026-08-06-07:00",
"end_date": "2026-08-09-07:00",
"current_round": 4,
"rounds": 4,
"purse": "8500000.00",
"venue": {
"name": "Sedgefield Country Club",
"city": "Greensboro",
"state": "North Carolina",
"country": "United States"
},
"url": "https://sports.yahoo.com/golf/pga-tour/2026/wyndham-championship/"
},
"count": 147,
"source_url": "https://graphite.sports.yahoo.com/v1/query/shangrila/playbookGolfTournament?...",
"fetched_at": "2026-08-14T07:05:00Z",
"entries": [
{
"rank": "1",
"player": {
"id": "golf.p.24201",
"name": "Michael Brennan",
"short_name": "M. Brennan",
"country": "United States",
"url": "https://sports.yahoo.com/golf/players/Michael+Brennan/24201/"
},
"score": -22,
"score_display": "-22",
"status": "FINISHED",
"thru": 18,
"rounds": [
{
"round": 1,
"strokes": 66,
"score": -4,
"score_display": "-4"
},
{
"round": 2,
"strokes": 65,
"score": -5,
"score_display": "-5"
},
{
"round": 3,
"strokes": 63,
"score": -7,
"score_display": "-7"
},
{
"round": 4,
"strokes": 64,
"score": -6,
"score_display": "-6"
}
],
"stats": {
"earnings": "$1530000.00",
"eagles": 1,
"birdies": 25,
"pars": 42,
"bogeys": 3,
"double_bogeys": 1
}
}
]
}
}Request schema
No body schema
Response schema
#/definitions/yahoosports.golfLeaderboardResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | yahoosports.GolfLeaderboardResponse | No | ||||
| data.count | integer | No | 156 | |||
| data.entries | array | No | ||||
| data.entries[].player | yahoosports.GolfPlayerRef | No | ||||
| data.entries[].player.country | string | No | United States | |||
| data.entries[].player.id | string | No | golf.p.23296 | |||
| data.entries[].player.name | string | No | Michael Thorbjornsen | |||
| data.entries[].player.short_name | string | No | M. Thorbjornsen | |||
| data.entries[].player.url | string | No | ||||
| data.entries[].rank | string | No | T1 | |||
| data.entries[].rounds | array | No | ||||
| data.entries[].rounds[].round | integer | No | 1 | |||
| data.entries[].rounds[].score | integer | No | -5 | |||
| data.entries[].rounds[].score_display | string | No | -5 | |||
| data.entries[].rounds[].strokes | integer | No | 65 | |||
| data.entries[].score | integer | No | -5 | |||
| data.entries[].score_display | string | No | -5 | |||
| data.entries[].stats | yahoosports.GolfPlayerStats | No | ||||
| data.entries[].stats.birdies | integer | No | 12 | |||
| data.entries[].stats.bogeys | integer | No | 3 | |||
| data.entries[].stats.double_bogeys | integer | No | 0 | |||
| data.entries[].stats.eagles | integer | No | 1 | |||
| data.entries[].stats.earnings | string | No | $0.00 | |||
| data.entries[].stats.pars | integer | No | 48 | |||
| data.entries[].status | string | No | IN_PROGRESS | |||
| data.entries[].thru | integer | No | 18 | |||
| data.fetched_at | string | No | ||||
| data.season | integer | No | 2026 | |||
| data.source_url | string | No | ||||
| data.tour | string | No | pga-tour | |||
| data.tournament | yahoosports.GolfTournamentRef | No | ||||
| data.tournament.current_round | integer | No | 1 | |||
| data.tournament.end_date | string | No | 2026-08-16 | |||
| data.tournament.id | string | No | golf.e.23 | |||
| data.tournament.name | string | No | FedEx St. Jude Championship | |||
| data.tournament.purse | string | No | 20000000.00 | |||
| data.tournament.rounds | integer | No | 4 | |||
| data.tournament.start_date | string | No | 2026-08-13 | |||
| data.tournament.status | string | No | IN_PROGRESS | |||
| data.tournament.url | string | No | ||||
| data.tournament.venue | yahoosports.Venue | No | ||||
| data.tournament.venue.city | string | No | ||||
| data.tournament.venue.country | string | No | ||||
| data.tournament.venue.name | string | No | Acrisure Stadium | |||
| data.tournament.venue.state | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/yahoo-sports/golf-leaderboard" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms