Zum Inhalt springen
GET /v1/teams

All NRL clubs

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/nrl-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 19,
        "teams": [
            {
                "id": "289195",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289195.png",
                "name": "Broncos",
                "abbreviation": "BRI"
            },
            {
                "id": "289197",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289197.png",
                "name": "Bulldogs",
                "abbreviation": "CAN"
            },
            {
                "id": "289202",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289202.png",
                "name": "Cowboys",
                "abbreviation": "NOR"
            },
            {
                "id": "289346",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289346.png",
                "name": "Dolphins",
                "abbreviation": "DOL"
            },
            {
                "id": "289209",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289209.png",
                "name": "Dragons",
                "abbreviation": "ST."
            },
            {
                "id": "289194",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289194.png",
                "name": "Eels",
                "abbreviation": "PAR"
            },
            {
                "id": "289207",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289207.png",
                "name": "Knights",
                "abbreviation": "NEW"
            },
            {
                "id": "289317",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289317.png",
                "name": "New South Wales",
                "abbreviation": "NEW"
            },
            {
                "id": "289199",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289199.png",
                "name": "Panthers",
                "abbreviation": "PEN"
            },
            {
                "id": "289318",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289318.png",
                "name": "Queensland",
                "abbreviation": "QUE"
            },
            {
                "id": "289205",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289205.png",
                "name": "Rabbitohs",
                "abbreviation": "SOU"
            },
            {
                "id": "289198",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289198.png",
                "name": "Raiders",
                "abbreviation": "CAN"
            },
            {
                "id": "289204",
                "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289204.png",
                "name": "Roosters",
                "abbreviation": "SYD"
            },
            {
                "id": "289196"
…