← Unterhaltung

Live-Ergebnisse

GET /sports/:sport/:league

Erhalten Sie live und recent scores for a specific sport und league. Liefert match details einschließlich team names, current scores, game status (scheduled/in-progress/final), und timing. Geben Sie an: the sport und league codes from the available sports Endpunkt (e.g., soccer/eng.1 for the English Premier League). Nützlich für sports dashboards, score tickers, betting apps, und fantasy sports tools. Daten von ESPN.

Parameter

sport erforderlich

Sport

league erforderlich

League

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/sports/soccer/eng.1
English Premier League scores
curl https://nordapi.ee/api/v1/sports/soccer/eng.1
NBA basketball scores
curl https://nordapi.ee/api/v1/sports/basketball/nba
NFL football scores
curl https://nordapi.ee/api/v1/sports/football/nfl

Live-Antwort

{
  "count": 1,
  "data": [
    {
      "date": "2026-04-10T19:00Z",
      "id": "740913",
      "name": "Wolverhampton Wanderers at West Ham United",
      "status": "Scheduled",
      "teams": [
        {
          "abbreviation": "WHU",
          "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/371.png",
          "name": "West Ham United",
          "score": "0",
          "winner": false
        },
        {
          "abbreviation": "WOL",
          "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/380.png",
          "name": "Wolverhampton Wanderers",
          "score": "0",
          "winner": false
        }
      ]
    }
  ],
  "league": "eng.1",
  "sport": "soccer",
  "success": true
}