/v1/fighter
Fighter profile
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}