Zum Inhalt springen
GET /v1/standings

Conference & division standings

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 2,
        "conferences": [
            {
                "divisions": [
                    {
                        "teams": [
                            {
                                "id": "17",
                                "team": "New England Patriots",
                                "ties": "0.0",
                                "wins": "14.0",
                                "losses": "3.0",
                                "streak": "W3",
                                "win_percent": ".824",
                                "abbreviation": "NE"
                            },
                            {
                                "id": "2",
                                "team": "Buffalo Bills",
                                "ties": "0.0",
                                "wins": "12.0",
                                "losses": "5.0",
                                "streak": "W1",
                                "win_percent": ".706",
                                "abbreviation": "BUF"
                            },
                            {
                                "id": "15",
                                "team": "Miami Dolphins",
                                "ties": "0.0",
                                "wins": "7.0",
                                "losses": "10.0",
                                "streak": "L1",
                                "win_percent": ".412",
                                "abbreviation": "MIA"
                            },
                            {
                                "id": "20",
                                "team": "New York Jets",
                                "ties": "0.0",
                                "wins": "3.0",
                                "losses": "14.0",
                                "streak": "L5",
                                "win_percent": ".176",
                                "abbreviation": "NYJ"
                            }
                        ],
                        "division": "AFC East"
                    },
                    {
                        "teams": [
                            {
                                "id": "23",
                                "team": "Pittsburgh Steelers",
                                "ties": "0.0",
                                "wins": "10.0",
                                "losses": "7.0",
                                "streak": "W1",
                                "win_percent": ".588",
                                "abbreviation": "PIT"
                            },
                            {
                                "id": "33",
                                "team": "Baltimore Ravens",
                                "ties": "0.0",
                                "wins": "8.0",
                                "losses": "9.0",
                                "streak": "L1",
                                
…