Endpoint Playground
Test Crawlora's Yahoo Sports Golf 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/golf-schedule?tour=pga-tour" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tour | string | Yes | pga-tour | Golf tour key |
| season | integer | No | 4-digit season year; defaults to the tour's current season |
{
"code": 200,
"msg": "OK",
"data": {
"tour": "pga-tour",
"season": 2026,
"count": 41,
"source_url": "https://graphite.sports.yahoo.com/v1/query/shangrila/golfTournamentsBasic?...",
"fetched_at": "2026-08-14T07:00:00Z",
"tournaments": [
{
"id": "golf.e.7",
"name": "Sony Open in Hawaii",
"season": 2026,
"start_date": "2026-01-15-08:00",
"end_date": "2026-01-18-08:00",
"status": "FINAL",
"purse": "9100000.00",
"venue": {
"name": "Waialae CC",
"city": "Honolulu",
"state": "Hawaii",
"country": "United States"
},
"url": "https://sports.yahoo.com/golf/pga-tour/2026/sony-open-in-hawaii/"
}
]
}
}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 golf tour's tournament schedule for a season (name, dates, status, purse, and venue), from Yahoo Sports' own public tournament-schedule JSON API. The `tour` enum accepts `pga-tour`, `pga-european-tours`, `lpga-tour`, `champions-tour`, and `european-tour`. Each tournament's `id` feeds the golf-leaderboard endpoint's `tournament` parameter.
{
"code": 200,
"msg": "OK",
"data": {
"tour": "pga-tour",
"season": 2026,
"count": 41,
"source_url": "https://graphite.sports.yahoo.com/v1/query/shangrila/golfTournamentsBasic?...",
"fetched_at": "2026-08-14T07:00:00Z",
"tournaments": [
{
"id": "golf.e.7",
"name": "Sony Open in Hawaii",
"season": 2026,
"start_date": "2026-01-15-08:00",
"end_date": "2026-01-18-08:00",
"status": "FINAL",
"purse": "9100000.00",
"venue": {
"name": "Waialae CC",
"city": "Honolulu",
"state": "Hawaii",
"country": "United States"
},
"url": "https://sports.yahoo.com/golf/pga-tour/2026/sony-open-in-hawaii/"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/golf-schedule?tour=<tour>" \
-H "x-api-key: $CRAWLORA_API_KEY"