GET /sports/:sport/:league
Get live and recent scores for a specific sport and league. Returns match details including 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). Useful for sports dashboards, score tickers, betting apps, and fantasy sports tools. Data from ESPN.
sport
required
Sport
league
required
League
| Name | Required | Default | Description |
|---|---|---|---|
sport |
Yes | - | Sport |
league |
Yes | - | League |
curl https://nordapi.ee/api/v1/sports/soccer/eng.1
curl https://nordapi.ee/api/v1/sports/soccer/eng.1
curl https://nordapi.ee/api/v1/sports/basketball/nba
curl https://nordapi.ee/api/v1/sports/football/nfl
{
"count": 4,
"data": [
{
"date": "2026-05-10T13:00Z",
"id": "740947",
"name": "Aston Villa at Burnley",
"status": "Full Time",
"teams": [
{
"abbreviation": "BUR",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/379.png",
"name": "Burnley",
"score": "2",
"winner": false
},
{
"abbreviation": "AVL",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/362.png",
"name": "Aston Villa",
"score": "2",
"winner": false
}
]
},
{
"date": "2026-05-10T13:00Z",
"id": "740948",
"name": "Everton at Crystal Palace",
"status": "Full Time",
"teams": [
{
"abbreviation": "CRY",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/384.png",
"name": "Crystal Palace",
"score": "2",
"winner": false
},
{
"abbreviation": "EVE",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/368.png",
"name": "Everton",
"score": "2",
"winner": false
}
]
},
{
"date": "2026-05-10T13:00Z",
"id": "740952",
"name": "Newcastle United at Nottingham Forest",
"status": "Full Time",
"teams": [
{
"abbreviation": "NFO",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/393.png",
"name": "Nottingham Forest",
"score": "1",
"winner": false
},
{
"abbreviation": "NEW",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/361.png",
"name": "Newcastle United",
"score": "1",
"winner": false
}
]
},
{
"date": "2026-05-10T15:30Z",
"id": "740955",
"name": "Arsenal at West Ham United",
"status": "Full Time",
"teams": [
{
"abbreviation": "WHU",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/371.png",
"name": "West Ham United",
"score": "0",
"winner": false
},
{
"abbreviation": "ARS",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/359.png",
"name": "Arsenal",
"score": "1",
"winner": true
}
]
}
],
"league": "eng.1",
"sport": "soccer",
"success": true
}