← Viihde

Reaaliaikaiset tulokset

GET /sports/:sport/:league

Hae live and recent scores for a specific sport and league. Palauttaa match details mukaan lukien team names, current scores, game status (scheduled/in-progress/final), and timing. Provide the sport and league codes from the available sports endpoint (e.g., soccer/eng.1 for the English Premier League). Hyödyllinen sports dashboards, score tickers, betting apps, and fantasy sports tools. Data ESPN.

Parametrit

sport pakollinen

Sport

league pakollinen

League

Esimerkkipyynnöt

Peruskäyttö
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

Reaaliaikainen vastaus

{
  "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
}