Skip to content
GET /v1/teams

The 32 NHL clubs

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/nhl-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/nhl-api/v1/teams" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nhl-api/v1/teams", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nhl-api/v1/teams");
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/nhl-api/v1/teams",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 8,
        "teams": [
            {
                "abbr": "ANA",
                "name": "Anaheim Ducks",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "CGY",
                "name": "Calgary Flames",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "EDM",
                "name": "Edmonton Oilers",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "LAK",
                "name": "Los Angeles Kings",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "SEA",
                "name": "Seattle Kraken",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "SJS",
                "name": "San Jose Sharks",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "VAN",
                "name": "Vancouver Canucks",
                "division": "Pacific",
                "conference": "Western"
            },
            {
                "abbr": "VGK",
                "name": "Vegas Golden Knights",
                "division": "Pacific",
                "conference": "Western"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:08.666Z",
        "request_id": "d74d10d7-2721-444c-93fe-e3cbefbbb8af"
    },
    "status": "ok",
    "message": "Teams retrieved",
    "success": true
}