/v1/news
NFL news
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/nfl-api/v1/news" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nfl-api/v1/news", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nfl-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/nfl-api/v1/news",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 6,
"articles": [
{
"link": "https://www.espn.com/video/clip/_/id/48912944/grainy-security-video-captures-last-moments-reche-caldwell-life",
"type": "Media",
"image": "https://a.espncdn.com/media/motion/2026/0529/dm_260529_Watchfolder_reche-caldwell_espn/dm_260529_Watchfolder_reche-caldwell_espn.jpg",
"headline": "Grainy security video captures the last moments of Reche Caldwell's life",
"published": "2026-06-07T10:15:52Z",
"description": "Grainy security video captures the last moments of Reche Caldwell's life"
},
{
"link": "https://www.espn.com/nfl/story/_/id/48966748/new-york-jets-change-44-years-veteran-leadership",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0604/r1668154_608x342_16-9.jpg",
"headline": "Can adding 44 years of veteran leadership help Jets turn it around?",
"published": "2026-06-07T14:21:44Z",
"description": "As the urgency to win increases, New York hopes its offseason moves will help alleviate growing pressures."
},
{
"link": "https://www.espn.com/nfl/story/_/id/48965433/jaylen-waddle-denver-broncos-debut-otas-offseason-practices",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0605/r1668565_608x342_16-9.jpg",
"headline": "Early impressions of new Broncos WR Jaylen Waddle at OTAs",
"published": "2026-06-07T14:26:46Z",
"description": "Wide receiver Jaylen Waddle practiced for the first time with the Broncos at OTAs. How has he fit so far with his new team?"
},
{
"link": "https://www.espn.com/nfl/story/_/id/48978408/nfl-new-england-patriots-similar-motivations-aj-brown-now-2026-randy-moss-2007",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0605/r1668740_576x324_16-9.jpg",
"headline": "Similar motivations for A.J. Brown now and Randy Moss then",
"published": "2026-06-07T13:48:34Z",
"description": "There's a link that unites the newest New England wideout with the one who joined the team almost 20 years ago."
},
{
"link": "https://www.espn.com/nfl/story/_/id/48984752/ward-definitely-wants-stay-browns-garrett-trade",
"type": "HeadlineNews",
"image": "https://a.espncdn.com/photo/2025/0710/r1517367_600x400_3-2.jpg",
"headline": "Ward 'definitely' wants to stay with Browns after Garrett trade",
"published": "2026-06-06T20:17:13Z",
"description": "Browns cornerback Denzel Ward says he wants to remain in Cleveland, even after the team traded defensive end Myles Garrett to the
…