Naar de inhoud
GET /v1/team

Team detail

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cbb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}