← Entretenimiento

Resultados en vivo

GET /sports/:sport/:league

Get live and recent scores for a specific sport and league. Returns match details incluyendo team nombres, 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). Útil para sports paneles, score tickers, betting aplicaciones, and fantasy sports tools. Data from ESPN.

Parametros

sport requerido

Sport

league requerido

League

Ejemplos de solicitudes

Uso basico
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

Respuesta en vivo

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