Endpoint Playground
Test Crawlora's Yahoo Sports tennis scoreboard 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-scoreboard" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 20,
"source_url": "https://sports.yahoo.com/tennis/tournaments/",
"fetched_at": "2026-08-14T09:00:00Z",
"matches": [
{
"id": "ten.g.15754496",
"tournament": "Western & Southern Open",
"event": "Men's Singles",
"league": "ATP",
"round": "Round of 128",
"surface": "Hard",
"venue": {
"name": "Lindner Family Tennis Center",
"city": "Cincinnati, OH",
"country": "United States"
},
"status": "FINAL",
"status_display": "Final",
"start_time": "2026-08-13T08:00:00-07:00",
"side1": [
{
"id": "ten.p.34440",
"name": "Martin Landaluce",
"short_name": "M. Landaluce",
"country": "Spain",
"rank": 64
}
],
"side2": [
{
"id": "ten.p.33855",
"name": "Jack Draper",
"short_name": "J. Draper",
"country": "Great Britain",
"rank": 143
}
],
"winner_ids": [
"ten.p.34440"
],
"sets": [
{
"set": 1,
"side1_score": 6,
"side2_score": 3
},
{
"set": 2,
"side1_score": 7,
"side2_score": 5
}
],
"url": "https://sports.yahoo.com/tennis/2026/western-southern-open/mens-singles/martin-landaluce-jack-draper-15754496/"
}
]
}
}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 snapshot of current/recently-completed tennis matches across the tour (tournament, round, players, per-set scores, winner, and status), from Yahoo Sports' own server-rendered tournaments page. This endpoint takes no parameters -- it is a fixed-size "what's happening right now" snapshot, not a by-date query.
{
"code": 200,
"msg": "OK",
"data": {
"count": 20,
"source_url": "https://sports.yahoo.com/tennis/tournaments/",
"fetched_at": "2026-08-14T09:00:00Z",
"matches": [
{
"id": "ten.g.15754496",
"tournament": "Western & Southern Open",
"event": "Men's Singles",
"league": "ATP",
"round": "Round of 128",
"surface": "Hard",
"venue": {
"name": "Lindner Family Tennis Center",
"city": "Cincinnati, OH",
"country": "United States"
},
"status": "FINAL",
"status_display": "Final",
"start_time": "2026-08-13T08:00:00-07:00",
"side1": [
{
"id": "ten.p.34440",
"name": "Martin Landaluce",
"short_name": "M. Landaluce",
"country": "Spain",
"rank": 64
}
],
"side2": [
{
"id": "ten.p.33855",
"name": "Jack Draper",
"short_name": "J. Draper",
"country": "Great Britain",
"rank": 143
}
],
"winner_ids": [
"ten.p.34440"
],
"sets": [
{
"set": 1,
"side1_score": 6,
"side2_score": 3
},
{
"set": 2,
"side1_score": 7,
"side2_score": 5
}
],
"url": "https://sports.yahoo.com/tennis/2026/western-southern-open/mens-singles/martin-landaluce-jack-draper-15754496/"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/tennis-scoreboard" \
-H "x-api-key: $CRAWLORA_API_KEY"