/v1/news
UFC news
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/mma-api/v1/news" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mma-api/v1/news", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mma-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/mma-api/v1/news",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 6,
"articles": [
{
"link": "https://www.espn.com/mma/story/_/id/48978261/ufc-white-pereira-surpasses-jones-goat-win-vs-gane",
"type": "HeadlineNews",
"image": "https://a.espncdn.com/photo/2025/1005/r1555849_600x400_3-2.jpg",
"headline": "UFC's White: Pereira surpasses Jones as GOAT with win vs. Gane",
"published": "2026-06-06T14:05:36Z",
"description": "UFC president Dana White believes two-weight UFC champion Alex Pereira will surpass Jon Jones as the greatest MMA fighter of all time if he beats Ciryl Gane at the White House."
},
{
"link": "https://www.espn.com/mma/story/_/id/48976727/hearn-advises-aspinall-not-fight-current-ufc-contract",
"type": "HeadlineNews",
"image": "https://a.espncdn.com/photo/2025/1020/r1562751_600x400_3-2.jpg",
"headline": "Hearn: Aspinall shouldn't fight Pereira-Gane winner under UFC deal",
"published": "2026-06-05T19:13:35Z",
"description": "British boxing promoter Eddie Hearn has advised UFC heavyweight champion Tom Aspinall not to defend his title vs. the winner of the Alex Pereira-Ciryl Gane bout under the terms of his current contract."
},
{
"link": "https://www.espn.com/mma/story/_/id/48949502/ranking-mma-unbeaten-fighters-ufc-pfl",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0602/r1667313_1296x729_16-9.jpg",
"headline": "Who is the best undefeated fighter in MMA?",
"published": "2026-06-05T11:40:38Z",
"description": "There are plenty of unbeaten fighters in MMA. We rank the select few who stand out from the rest."
},
{
"link": "https://www.espn.com/mma/story/_/id/48895889/ufc-white-house-buzz-freedom-250-updates-news-analysis-ilia-topuria-vs-justin-gaethje",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0528/r1664629_1296x729_16-9.jpg",
"headline": "UFC White House buzz: Expect a UFC show that 'tells the story of America'",
"published": "2026-06-05T00:01:24Z",
"description": "The latest news and information from Washington, D.C., where the UFC will host its White House show on June 14."
},
{
"link": "https://www.espn.com/mma/story/_/id/48946908/ufc-freedom-250-white-house-claw",
"type": "Story",
"image": "https://a.espncdn.com/photo/2026/0601/r1666675_1296x729_16-9.jpg",
"headline": "Everything to know about the UFC White House centerpiece: the claw",
"published": "2026-06-04T12:17:14Z",
"description": "The UFC at the White House stage is a 92-foot-tall behemoth us
…