/v1/news
NBA news
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/nba-api/v1/news" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nba-api/v1/news", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nba-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/nba-api/v1/news",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 6,
"articles": [
{
"link": "https://www.espn.com/nba/story/_/id/48987208/nba-finals-2026-knicks-spurs-game-3-madison-square-garden-robinson-shamet-bench",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0607/r1669310_1296x729_16-9.jpg",
"headline": "NBA Finals 2026: Inside the Knicks' journey to embracing the bench",
"published": "2026-06-07T16:21:10Z",
"description": "Here's how New York embraced its bench and overcame one of its biggest obstacles to a title."
},
{
"link": "https://www.espn.com/video/clip/_/id/48991299/what-adjustments-do-spurs-need-make-win-game-3",
"type": "Media",
"image": "https://a.espncdn.com/media/motion/2026/0607/ss_20260607_093626188_3556644/ss_20260607_093626188_3556644.jpg",
"headline": "What adjustments do the Spurs need to make to win Game 3?",
"published": "2026-06-07T13:58:38Z",
"description": "What adjustments do the Spurs need to make to win Game 3?"
},
{
"link": "http://www.espn.com/nba/preview?gameId=401859965",
"type": "Preview",
"image": "https://s.espncdn.com/stitcher/sports/basketball/nba/events/401859965.png?templateId=espn.applewatch.awayhome.1",
"headline": "New York takes 2-0 lead into game 3 against San Antonio",
"published": "2026-06-07T06:04:01Z",
"description": "San Antonio Spurs (62-20, second in the Western Conference) vs. New York Knicks (53-29, third in the Eastern Conference)"
},
{
"link": "https://www.espn.com/nba/story/_/id/48988751/knicks-warn-stepped-security-fans-amid-trump-g3-attendance",
"type": "HeadlineNews",
"image": "https://a.espncdn.com/photo/2025/1110/r1573425_600x400_3-2.jpg",
"headline": "Knicks warn of stepped-up security for fans amid Trump's G3 attendance",
"published": "2026-06-07T12:35:08Z",
"description": "The New York Knicks are warning fans to bring as little as possible to Game 3 of the NBA Finals and encouraging them to arrive at least two hours before tipoff as part of enhanced security measures with President Donald Trump attending the game."
},
{
"link": "https://www.espn.com/nba/story/_/id/48985479/cleveland-cavaliers-taylor-swift-seat-auction-bid-eastern-conference-finals",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0524/r1662637_608x342_16-9.jpg",
"headline": "Taylor Swift's courtside Cavs ECF seat goes up for bidding",
"published": "2026-06-07T05:08:45Z",
"description": "The Grammy Award-winning artist and her soon-
…