Skip to content
GET /v1/team

Team detail

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cbb-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}