Ir al contenido
GET /v1/event

A single event's fight card

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/event" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mma-api/v1/event", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mma-api/v1/event");
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/event",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "event": {
            "id": "600058949",
            "date": "2026-06-06T21:00Z",
            "name": "UFC Fight Night: Muhammad vs. Bonfim",
            "fights": [
                {
                    "id": "401870073",
                    "result": {
                        "method": "Final",
                        "winner": "Ketlen Souza"
                    },
                    "status": "Final",
                    "fighters": [
                        {
                            "name": "Ariane Carnelossi",
                            "record": "15-5-0",
                            "winner": false
                        },
                        {
                            "name": "Ketlen Souza",
                            "record": "17-6-0",
                            "winner": true
                        }
                    ],
                    "completed": true
                },
                {
                    "id": "401864366",
                    "result": {
                        "method": "Final",
                        "winner": "Jeisla Chaves"
                    },
                    "status": "Final",
                    "fighters": [
                        {
                            "name": "Yuneisy Duben",
                            "record": "6-2-0",
                            "winner": false
                        },
                        {
                            "name": "Jeisla Chaves",
                            "record": "8-0-0",
                            "winner": true
                        }
                    ],
                    "completed": true
                },
                {
                    "id": "401870072",
                    "result": {
                        "method": "Final",
                        "winner": "Joanderson Brito"
                    },
                    "status": "Final",
                    "fighters": [
                        {
                            "name": "Joanderson Brito",
                            "record": "19-5-1",
                            "winner": true
                        },
                        {
                            "name": "Jordan Leavitt",
                            "record": "13-4-0",
                            "winner": false
                        }
                    ],
                    "completed": true
                },
                {
                    "id": "401870074",
                    "result": {
                        "method": "Final",
                        "winner": "Chelsea Chandler"
                    },
                    "status": "Final",
                    "fighters": [
                        {
                            "name": "Priscila Cachoeira",
                            "record": "13-9-0",
                            "winner": false
                        },
                        {
                            "name": 
…