/v1/news
League news
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/soccer-api/v1/news" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soccer-api/v1/news", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soccer-api/v1/news");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/soccer-api/v1/news",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 6,
"league": "eng.1",
"articles": [
{
"link": "https://www.espn.com/soccer/story/_/id/48990165/transfer-rumors-news-arsenal-psg-fight-nottingham-forest-morgan-gibbs-white",
"image": "https://a.espncdn.com/photo/2026/0419/r1645969_1296x729_16-9.jpg",
"headline": "Transfer rumors, news: Arsenal, PSG to fight for Gibbs-White",
"published": "2026-06-07T14:05:25Z",
"description": "Arsenal could face strong competition from Paris Saint-Germain for the signature of Nottingham Forest midfielder Morgan Gibbs-White. Transfer Talk has the latest."
},
{
"link": "https://www.espn.com/soccer/story/_/id/48944912/premier-league-efl-summer-transfer-window-2026-dates-does-open-deadline-day",
"image": "https://a.espncdn.com/photo/2024/0913/r1385766_1296x729_16-9.jpg",
"headline": "Premier League, EFL summer transfer window 2026 dates: When does it open, when is Deadline Day?",
"published": "2026-06-07T12:00:31Z",
"description": "Everything that Premier League and EFL supporters need to know about the 2026 summer transfer window, and key dates around it."
},
{
"link": "https://www.espn.com/soccer/story/_/id/48709856/world-cup-2026-which-players-your-premier-league-team-going",
"image": "https://a.espncdn.com/photo/2026/0525/r1663354_1296x729_16-9.jpg",
"headline": "World Cup 2026: Which players from your Premier League team are going?",
"published": "2026-06-07T11:41:40Z",
"description": "Which Premier League players from your team are representing their country at the 2026 World Cup in the United States, Canada and Mexico?"
},
{
"link": "https://www.espn.com/soccer/story/_/id/48981673/transfer-rumors-news-bayern-olise-real-madrid-target-perez",
"image": "https://a.espncdn.com/photo/2026/0606/r1669122_1296x729_16-9.jpg",
"headline": "Transfer rumors, news: Man United target Balde, other left backs",
"published": "2026-06-06T21:53:40Z",
"description": "Manchester United are stepping up interest in various left backs. Transfer Talk has the latest."
},
{
"link": "https://www.espn.com/soccer/story/_/id/48956021/16-players-use-world-cup-get-big-transfer-europe",
"image": "https://a.espncdn.com/photo/2026/0331/r1636426_1296x729_16-9.jpg",
"headline": "16 players who could use World Cup to get a big transfer in Europe",
"published": "2026-06-06T12:06:42Z",
"description": "The World Cup is the biggest stage in sports, so which players are hoping to use it to get their next big transfer?"
},
{
…