Ir al contenido
GET /v1/news

UFC news

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/mma-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…