Docs/UFC API/UFC Bouts

UFC Bouts

Results, totals, round-by-round stats, and fight odds

List bouts

GET/api/v1/ufc/bouts

Paginated bouts.

Query parameters

ParameterTypeDescription
pagenumberPage number
limitnumberPage size
hasStatsbooleanOnly bouts with stats
includeStatsbooleanInclude stat rows

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts?hasStats=true&includeStats=true" \
  -H "x-api-key: YOUR_API_KEY"

Bout detail

GET/api/v1/ufc/bouts/{boutId}

Fighters, result, method, finish round/time, referee, weight class, event.

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts/YOUR_BOUT_ID" \
  -H "x-api-key: YOUR_API_KEY"

Response

json
{
  "success": true,
  "data": {
    "id": "…",
    "event": { "slug": "ufc-300", "name": "UFC 300" },
    "weightClass": "Lightweight",
    "result": {
      "winner": "red",
      "method": "Decision - Unanimous",
      "round": 5,
      "time": "5:00"
    }
  }
}

Fight totals

GET/api/v1/ufc/bouts/{boutId}/stats

Knockdowns, strikes, takedowns, control. Optional ?round=.

Query parameters

ParameterTypeDescription
roundnumberSingle-round filter

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts/YOUR_BOUT_ID/stats?round=1" \
  -H "x-api-key: YOUR_API_KEY"

Round-by-round

GET/api/v1/ufc/bouts/{boutId}/rounds

Per-fighter rows by round (head/body/leg, distance/clinch/ground when present).

Query parameters

ParameterTypeDescription
roundnumberOptional filter

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts/YOUR_BOUT_ID/rounds" \
  -H "x-api-key: YOUR_API_KEY"

Fight odds

GET/api/v1/ufc/bouts/{boutId}/odds
GET/api/v1/ufc/fights/{boutId}/odds

Moneyline, totals, method, and round props when available.

Query parameters

ParameterTypeDescription
bookmakerstringall | draftkings | …

Example

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts/YOUR_BOUT_ID/odds?bookmaker=all" \
  -H "x-api-key: YOUR_API_KEY"

Fight-night clocks: /docs/api/ufc/live

Ship fight detail & stats

Cito is how you build UFC research tools, fighter profiles, fight cards, rankings pages, and MMA dashboards. Hit bout detail and rounds in the sandbox.

bash
curl "https://api.citoapi.com/api/v1/ufc/bouts/{id}" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/bouts/{id}/stats" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/bouts/{id}/rounds" \
  -H "x-api-key: YOUR_API_KEY"

curl "https://api.citoapi.com/api/v1/ufc/bouts/{id}/odds?bookmaker=all" \
  -H "x-api-key: YOUR_API_KEY"