Endpoint Playground
Test Crawlora's Yahoo Sports Tennis 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/tennis-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 86,
"source_url": "https://sports.yahoo.com/tennis/tournaments/",
"fetched_at": "2026-08-14T09:00:00Z",
"tournaments": [
{
"id": "ten.e.2042",
"name": "Brisbane International presented by Evie",
"gender": "MEN",
"match_type": "SINGLES",
"surface": "Hard",
"start_time": "2026-01-03T16:00:00-08:00",
"end_time": "2026-01-11T04:00:00-08:00",
"status": "FINAL",
"venue": {
"city": "Brisbane",
"country": "Australia"
},
"champion": {
"name": "Daniil Medvedev",
"player_id": "ten.p.19603"
},
"url": "https://sports.yahoo.com/tennis/2026/brisbane-international-presented-by-evie/"
}
]
}
}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 the full season tennis tournament calendar (name, gender, match type, surface, dates, status, venue, and champion where decided), from Yahoo Sports' own server-rendered tournaments page. This endpoint takes no parameters -- it always returns Yahoo's current full-season snapshot (season/gender/match-type filtering happens client-side on Yahoo's own page, not server-side).
{
"code": 200,
"msg": "OK",
"data": {
"count": 86,
"source_url": "https://sports.yahoo.com/tennis/tournaments/",
"fetched_at": "2026-08-14T09:00:00Z",
"tournaments": [
{
"id": "ten.e.2042",
"name": "Brisbane International presented by Evie",
"gender": "MEN",
"match_type": "SINGLES",
"surface": "Hard",
"start_time": "2026-01-03T16:00:00-08:00",
"end_time": "2026-01-11T04:00:00-08:00",
"status": "FINAL",
"venue": {
"city": "Brisbane",
"country": "Australia"
},
"champion": {
"name": "Daniil Medvedev",
"player_id": "ten.p.19603"
},
"url": "https://sports.yahoo.com/tennis/2026/brisbane-international-presented-by-evie/"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/tennis-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"