Docs/UFC API/UFC Fighters

UFC Fighters

Profiles, records, career stats, and fight history

List fighters

GET/api/v1/ufc/fighters
GET/api/v1/ufc/athletes

/athletes is an alias of /fighters.

Query parameters

ParameterTypeDescription
pagenumberPage number (default 1)
limitnumberPage size (default 50)

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/fighters?page=1&limit=50" \
  -H "x-api-key: YOUR_API_KEY"

Search

GET/api/v1/ufc/search

Resolve a fighter slug (also returns events and bouts).

Query parameters

ParameterTypeDescription
q*stringSearch text

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/search?q=islam" \
  -H "x-api-key: YOUR_API_KEY"

Fighter profile

GET/api/v1/ufc/fighters/{slug}
GET/api/v1/ufc/athletes/{slug}

Bio, record, weight class, stance, height/reach, rankings, image.

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev" \
  -H "x-api-key: YOUR_API_KEY"

Response

json
{
  "success": true,
  "data": {
    "slug": "islam-makhachev",
    "name": "Islam Makhachev",
    "record": { "wins": 27, "losses": 1, "draws": 0 },
    "weightClass": "Lightweight",
    "stance": "Orthodox",
    "imageUrl": "https://..."
  }
}

Career stats

GET/api/v1/ufc/fighters/{slug}/stats

Striking and grappling accuracy, defense, win methods, strike targets.

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev/stats" \
  -H "x-api-key: YOUR_API_KEY"

Fight history

GET/api/v1/ufc/fighters/{slug}/fights

Past bouts with opponents, events, and results.

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev/fights" \
  -H "x-api-key: YOUR_API_KEY"

Ship fighter profiles

Cito is how you build UFC fighter profiles, fight cards, rankings pages, research tools, and MMA dashboards. Try these requests in the sandbox, then drop them into your app.

bash
curl "https://api.citoapi.com/api/v1/ufc/search?q=islam" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev/stats" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/fighters/islam-makhachev/fights" \
  -H "x-api-key: YOUR_API_KEY"