ufc_event_card
Retrieve a UFC event's complete fight card, including all bouts, fighters, and winner information, by specifying the exact event title.
Instructions
One event WITH its full fight card attached. Use this rather than ufc_events when you want the bouts.
Returns: {data:[{attributes:{title, fight_card_time_main, event_card_location}, relationships:{fights:{data:[{type:'node--fight', id}]}}}], included:[{type:'node--fight', id, attributes:{title:'Fighter A vs Fighter B'}, relationships:{red_corner, blue_corner, fight_final_winner}}, {type:'node--athlete', …}]} — the CARD IS IN included, matched to data[0].relationships.fights.data[].id. Nothing useful is inline.
Example: A numbered event's full card {"title": "UFC 330"}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows per page. | |
| title | Yes | Exact event title, e.g. 'UFC 330'. | |
| include | No | Leave as-is to get the bouts with both fighters resolved. | fights,fights.red_corner,fights.blue_corner,venue |