← Meelelahutus

Reaalajas tulemused

GET /sports/:sport/:league

Saage live and recent scores for a specific sport and league. Tagastab match details sealhulgas team names, current scores, game status (scheduled/in-progress/final), and timing. Esitage the sport and league codes from the available sports lõpp-punkt (nt soccer/eng.1 for the English Premier League). Kasulik sports dashboards, score tickers, betting apps, and fantasy sports tools. Andmed ESPN.

Parameetrid

sport kohustuslik

Sport

league kohustuslik

League

Näidispäringud

Põhikasutus
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

Reaalajas vastus

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