ufc_fights
Retrieve UFC bout details, including red and blue corner fighters and the final winner, from UFC 1 to present. Filter by exact title, sort, and paginate results to compare fight outcomes across events.
Instructions
Individual bouts — both corners and the winner — back to UFC 1.
Returns: {data:[{attributes:{title:'Royce Gracie vs Ken Shamrock', created, changed}, relationships:{red_corner:{data:{type:'node--athlete', id}}, blue_corner:{…}, fight_final_winner:{…}, fight_status}}], included:[…athletes…]} — fight_final_winner is null for an upcoming or drawn bout, so do not infer a loser from its absence.
Example: Recent bouts with fighters resolved {"limit": 10}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field; '-' descends. | -changed |
| limit | No | Rows per page (max 50). | |
| title | No | Exact bout title, e.g. 'Royce Gracie vs Ken Shamrock'. | |
| offset | No | Rows to skip. | |
| include | No | Resolve the fighters rather than returning bare ids. | red_corner,blue_corner,fight_final_winner |