Ir al contenido
GET /v1/fighter

Fighter profile

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

Respuesta de ejemplo

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

{
    "data": {
        "fighter": {
            "id": "3088812",
            "age": 39,
            "name": "Kamaru Usman",
            "reach": "76\"",
            "active": true,
            "gender": "MALE",
            "height": "6' 0\"",
            "record": [
                {
                    "label": "Wins-Losses-Draws",
                    "value": "21-4-0"
                },
                {
                    "label": "Technical Knockout-Technical Knockout Losses",
                    "value": "9-1"
                },
                {
                    "label": "Submissions-Submission Losses",
                    "value": "1-1"
                }
            ],
            "stance": "Switch",
            "weight": "171 lbs",
            "headshot": "https://a.espncdn.com/i/headshots/mma/players/full/3088812.png",
            "nickname": "Nigerian Nightmare",
            "last_name": "Usman",
            "first_name": "Kamaru",
            "association": "ONX Sports",
            "citizenship": "Nigeria",
            "weight_class": "Welterweight",
            "date_of_birth": "11/5/1987",
            "fighting_style": "Striker,Freestyle"
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:39.671Z",
        "request_id": "fa35a080-b05e-4f67-9519-9184fd7b4fd7"
    },
    "status": "ok",
    "message": "Fighter retrieved successfully",
    "success": true
}