Vai al contenuto
GET /v1/events

UFC events & fight cards

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/mma-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 1,
        "events": [
            {
                "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"
                        },
           
…