/v1/team
Team detail
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/cbb-api/v1/team" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cbb-api/v1/team", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cbb-api/v1/team");
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/cbb-api/v1/team",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"team": {
"id": "150",
"logo": "https://a.espncdn.com/i/teamlogos/ncaa/500/150.png",
"name": "Duke Blue Devils",
"rank": 4,
"color": "00539b",
"record": "35-3",
"location": "Duke",
"nickname": "Blue Devils",
"standing": "1st in ACC",
"abbreviation": "DUKE",
"alternate_color": "ffffff"
}
},
"meta": {
"timestamp": "2026-06-07T16:46:07.774Z",
"request_id": "c2cff158-da01-4efa-a167-14c2017da6d9"
},
"status": "ok",
"message": "Team retrieved successfully",
"success": true
}