Endpoint Playground
Test Crawlora's Yahoo Sports tennis rankings 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-rankings?type=mens-singles" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| type | string | Yes | mens-singles | Rankings type |
{
"code": 200,
"msg": "OK",
"data": {
"type": "mens-singles",
"count": 100,
"source_url": "https://sports.yahoo.com/tennis/rankings/?matchType=MENS_SINGLES",
"fetched_at": "2026-08-14T09:00:00Z",
"rankings": [
{
"rank": 1,
"points": 13450,
"name": "Jannik Sinner",
"country": "Italy",
"age": 24
},
{
"rank": 2,
"points": 8160,
"name": "Carlos Alcaraz",
"country": "Spain",
"age": 23
}
]
}
}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 an ATP/WTA singles/doubles ranking list (rank, points, player name, country, age), from Yahoo Sports' own server-rendered rankings page. The `type` enum accepts `mens-singles`, `womens-singles`, `mens-doubles`, and `womens-doubles`. No stable player id is available in this list.
{
"code": 200,
"msg": "OK",
"data": {
"type": "mens-singles",
"count": 100,
"source_url": "https://sports.yahoo.com/tennis/rankings/?matchType=MENS_SINGLES",
"fetched_at": "2026-08-14T09:00:00Z",
"rankings": [
{
"rank": 1,
"points": 13450,
"name": "Jannik Sinner",
"country": "Italy",
"age": 24
},
{
"rank": 2,
"points": 8160,
"name": "Carlos Alcaraz",
"country": "Spain",
"age": 23
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/tennis-rankings?type=<type>" \
-H "x-api-key: $CRAWLORA_API_KEY"