/v1/sport
Athletes in a sport
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/rio2016-api/v1/sport" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rio2016-api/v1/sport", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rio2016-api/v1/sport");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/rio2016-api/v1/sport",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 50,
"sport": "athletics",
"total": 2363,
"athletes": [
{
"id": "947726",
"sex": "male",
"code": "KE",
"gold": 0,
"name": "Boniface Mucheru Tumuti",
"emoji": "🇰🇪",
"sport": "athletics",
"total": 1,
"bronze": 0,
"height": 1.75,
"silver": 1,
"weight": 72,
"country": "Kenya",
"nationality": "KEN",
"date_of_birth": "1992-05-02"
},
{
"id": "1009342",
"sex": "female",
"code": "AU",
"gold": 0,
"name": "Ella Nelson",
"emoji": "🇦🇺",
"sport": "athletics",
"total": 0,
"bronze": 0,
"height": 1.69,
"silver": 0,
"weight": 58,
"country": "Australia",
"nationality": "AUS",
"date_of_birth": "1994-05-10"
},
{
"id": "1089850",
"sex": "female",
"code": "KE",
"gold": 0,
"name": "Eunice Jepkoech Sum",
"emoji": "🇰🇪",
"sport": "athletics",
"total": 0,
"bronze": 0,
"height": 1.7,
"silver": 0,
"weight": 54,
"country": "Kenya",
"nationality": "KEN",
"date_of_birth": "1988-04-10"
},
{
"id": "1436864",
"sex": "male",
"code": "IN",
"gold": 0,
"name": "Arokia Rajiv",
"emoji": "🇮🇳",
"sport": "athletics",
"total": 0,
"bronze": 0,
"height": 1.77,
"silver": 0,
"weight": 64,
"country": "India",
"nationality": "IND",
"date_of_birth": "1991-05-22"
},
{
"id": "1578040",
"sex": "female",
"code": "GT",
"gold": 0,
"name": "Mirna Ortiz",
"emoji": "🇬🇹",
"sport": "athletics",
"total": 0,
"bronze": 0,
"height": 1.58,
"silver": 0,
"weight": 42,
"country": "Guatemala",
"nationality": "GUA",
"date_of_birth": "1987-02-28"
},
{
"id": "1664652",
"sex": "male",
"code": "EG",
"gold": 0,
"name": "Hamada Mohamed",
"emoji": "🇪🇬",
"
…