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.
sport
pakollinen
Sport
league
pakollinen
League
| Nimi | Pakollinen | Oletus | Kuvaus |
|---|---|---|---|
sport |
Kyllä | - | Sport |
league |
Kyllä | - | 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": 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
}