Endpoint Playground
Test Crawlora's Yahoo Sports Olympics medal count 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/olympics-medals" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"games": {
"name": "Milan 2026 Winter Olympics",
"short_name": "Milan",
"season": 2026,
"start_date": "2026-02-06T08:00:00+08:00",
"end_date": "2026-02-22T08:00:00+08:00"
},
"count": 93,
"source_url": "https://sports.yahoo.com/olympics/medals/",
"fetched_at": "2026-08-14T15:05:00Z",
"medals": [
{
"country": "Norway",
"iso_code": "NOR",
"ioc_code": "NOR",
"gold": 18,
"silver": 12,
"bronze": 11,
"total": 41,
"rank": 1
}
]
}
}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 current Olympic games' full medal count by country (gold/silver/bronze/total, ranked), from Yahoo Sports' own server-rendered Olympics medals page. This endpoint takes no parameters -- it always returns whichever Olympic games Yahoo currently has medal data for, not a caller-selected prior edition.
{
"code": 200,
"msg": "OK",
"data": {
"games": {
"name": "Milan 2026 Winter Olympics",
"short_name": "Milan",
"season": 2026,
"start_date": "2026-02-06T08:00:00+08:00",
"end_date": "2026-02-22T08:00:00+08:00"
},
"count": 93,
"source_url": "https://sports.yahoo.com/olympics/medals/",
"fetched_at": "2026-08-14T15:05:00Z",
"medals": [
{
"country": "Norway",
"iso_code": "NOR",
"ioc_code": "NOR",
"gold": 18,
"silver": 12,
"bronze": 11,
"total": 41,
"rank": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/olympics-medals" \
-H "x-api-key: $CRAWLORA_API_KEY"