Zum Inhalt springen
GET /v1/team

Club detail by id

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

Beispiel-Response

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

{
    "data": {
        "team": {
            "id": "289195",
            "logo": "https://a.espncdn.com/i/teamlogos/rugby/teams/500/289195.png",
            "name": "Broncos",
            "record": "LLLLL",
            "next_event": "Rabbitohs vs Broncos",
            "abbreviation": "BRI"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:19:59.406Z",
        "request_id": "9f89a050-ca75-4a90-bcec-7b5abadf2b8b"
    },
    "status": "ok",
    "message": "Team retrieved successfully",
    "success": true
}