ufc_round_records
Get ranked UFC single-round records for significant strikes, total strikes, takedowns, and submission attempts. Filter by round and stat type yourself, because server-side filters return no rows.
Instructions
The single-round record book: most significant strikes, total strikes, takedowns and submission attempts in one round, ranked.
Returns: [{attributes:{fightmetric_id, rank, round, statname, value (a STRING), combined}}] — combined: true means BOTH fighters' totals in that round; false is one fighter's. Mixing the two produces a nonsense leaderboard, so filter on it if you care. Resolve fightmetric_id to a name via ufc_search_athletes.
WARNING: filter[round] and filter[statname] return 0 rows rather than an error (verified) — filter the rows yourself. statname is one of: Significant Strikes Landed/Attempted, Total Strikes Landed/Attempted, Takedowns Landed/Attempted, Submission Attempts; round is 1-5.
Example: The round record book {"limit": 50}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field; 'rank' ascends from the record holder. Sorting works; filtering does not — see the note in Returns. | rank |
| limit | No | Rows per page (max 50). Ask for a full page and narrow by `round`/`statname` yourself — the collection cannot be filtered server-side. | |
| offset | No | Rows to skip. |