Discover/UFC API
live

UFC APIufc.com

Get current UFC fighter rankings by weight class division via API. Returns champion and top 15 ranked fighters for all divisions from ufc.com.

Endpoint health
verified 4d ago
get_rankings
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the UFC API?

The UFC Rankings API exposes one endpoint — get_rankings — that returns fighter standings across all UFC weight class divisions, with each division object including the current champion and up to 15 ranked contenders. The response covers fields like division name, champion name, and a ranked array of fighters, giving developers a structured snapshot of the official UFC rankings as published on ufc.com.

Try it
Filter by division name (case-insensitive substring match). Common values: 'heavyweight', 'flyweight', 'bantamweight', 'featherweight', 'lightweight', 'welterweight', 'middleweight', 'pound-for-pound', 'women'. Returns all divisions if omitted.
api.parse.bot/scraper/351d3f8b-3936-4b8b-8171-322fa6d97132/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/351d3f8b-3936-4b8b-8171-322fa6d97132/get_rankings?division=heavyweight' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ufc-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.ufc_fighter_rankings_api import UFC, Division, RankedFighter

ufc = UFC()

# List all divisions and print champion info
for division in ufc.divisions.list():
    print(division.division, division.champion)
    for fighter in division.ranked_fighters:
        print(fighter.rank, fighter.name)

# Filter to heavyweight divisions only
for division in ufc.divisions.list(division="heavyweight"):
    print(division.division, division.champion, len(division.ranked_fighters))
All endpoints · 1 totalmissing one? ·

Get all UFC fighter rankings by weight class division. Returns champion and ranked fighters (1-15) for each division. Optionally filter by division name using case-insensitive substring matching. A filter of 'heavyweight' matches both 'Heavyweight' and 'Light Heavyweight'. A filter of 'women' matches all women's divisions. Returns all 13 divisions when no filter is specified.

Input
ParamTypeDescription
divisionstringFilter by division name (case-insensitive substring match). Common values: 'heavyweight', 'flyweight', 'bantamweight', 'featherweight', 'lightweight', 'welterweight', 'middleweight', 'pound-for-pound', 'women'. Returns all divisions if omitted.
Response
{
  "type": "object",
  "fields": {
    "divisions": "array of division objects, each with: division (string - division name), champion (string or null - current champion name), ranked_fighters (array of objects with rank (integer) and name (string))",
    "total_divisions": "integer - number of divisions returned"
  },
  "sample": {
    "data": {
      "divisions": [
        {
          "champion": "Carlos Ulberg",
          "division": "Light Heavyweight",
          "ranked_fighters": [
            {
              "name": "Magomed Ankalaev",
              "rank": 1
            },
            {
              "name": "Alex Pereira",
              "rank": 2
            },
            {
              "name": "Jiří Procházka",
              "rank": 3
            }
          ]
        },
        {
          "champion": "Tom Aspinall",
          "division": "Heavyweight",
          "ranked_fighters": [
            {
              "name": "Ciryl Gane",
              "rank": 1
            },
            {
              "name": "Alexander Volkov",
              "rank": 2
            },
            {
              "name": "Sergei Pavlovich",
              "rank": 3
            }
          ]
        }
      ],
      "total_divisions": 2
    },
    "status": "success"
  }
}

About the UFC API

What the API Returns

The get_rankings endpoint returns an array of division objects sourced from the official UFC rankings page at ufc.com/rankings. Each division object contains three fields: division (the weight class name, e.g. "Heavyweight" or "Women's Strawweight"), champion (the current titleholder's name as a string, or null if the belt is vacant), and ranked (an ordered array of fighter names from position 1 through 15). The top-level response also includes total_divisions, which reflects how many divisions were returned for a given query.

Filtering by Division

The optional division parameter accepts a case-insensitive substring string, so passing "fly" will match both "Flyweight" and "Women's Flyweight". Passing "heavyweight" returns only the Heavyweight division. When the parameter is omitted, all divisions are returned. This makes it straightforward to scope a request to a single weight class without client-side filtering.

Coverage and Freshness

The API reflects the rankings as they appear on ufc.com, which UFC typically updates on a weekly basis following events. All divisions with an active ranking appear in the response — including women's divisions and pound-for-pound rankings if they are present on the source page. The champion field will be null for any division where no titleholder is currently listed.

Reliability & maintenanceVerified

The UFC API is a managed, monitored endpoint for ufc.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ufc.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ufc.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display a live UFC rankings table in a sports app, organized by division with champion highlighted
  • Track week-over-week movement of a specific fighter through the ranked array across divisions
  • Build a fighter comparison tool that pulls two contenders from the same division's ranked list
  • Power a fantasy MMA draft interface that surfaces only top-15 fighters per weight class
  • Alert users when the champion field for their followed division changes after a title fight
  • Filter pound-for-pound or women's divisions specifically using the division substring parameter
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does UFC have an official public developer API?+
UFC does not publish an official public developer API. There is no documented REST or GraphQL API available to third-party developers for accessing rankings data programmatically.
What does the `ranked` array in each division contain?+
The ranked field is an ordered array of fighter name strings, starting from position 1 (top contender) down to position 15. The ordering matches the official UFC rankings for that division. The array may contain fewer than 15 entries if fewer fighters are ranked in that division at the time of the request.
Does the API return fighter stats, records, or upcoming fight schedules?+
Not currently. The API covers division names, champion names, and the ordered list of ranked fighters (positions 1–15). It does not include win/loss records, strike statistics, upcoming bouts, or fighter profile data. You can fork this API on Parse and revise it to add an endpoint pulling that data.
How current is the rankings data?+
The data reflects what is published on ufc.com/rankings, which UFC updates on a roughly weekly cadence — typically after event weekends. There is no timestamp field in the response, so the exact age of a given snapshot is not directly machine-readable from the API response.
Can I retrieve historical rankings or see how a fighter's position changed over time?+
The API returns current rankings only; there is no historical rankings endpoint or position-change delta in the response. You can fork this API on Parse and revise it to add a caching or snapshot layer that records position data over time.
Page content last updated . Spec covers 1 endpoint from ufc.com.
Related APIs in SportsSee all →
ufcstats.com API
Access comprehensive UFC fight data including event results, fighter profiles, and detailed statistics like striking accuracy, takedown rates, and win-loss records. Search fighters, view fight cards, and explore fight history with method of victory information to analyze performance metrics and outcomes.
oktagonmma.com API
Browse OKTAGON MMA fighters with pagination and optional weight-class filtering, then fetch detailed fighter profiles and their full fight history.
statleaders.ufc.com API
Track and compare UFC fighter performance with access to ranked leaderboards for career achievements, individual fight statistics, round-by-round data, and event records. Search fighter profiles and fight details to analyze comprehensive combat statistics and record book information across the UFC's history.
boxrec.com API
Access detailed boxer statistics, career records, and fight histories from BoxRec. Retrieve comprehensive data on any fighter's record, rankings, division, KO percentage, and performance metrics, plus discover trending fighters in real-time.
fie.org API
Search and explore detailed fencer profiles, track athlete rankings, and review competition results and tournament brackets from the International Fencing Federation. Get comprehensive match histories and stay updated on world rankings across all fencing competitions.
fifa.com API
Track FIFA world rankings for men's and women's teams, browse tournament schedules and standings, access detailed match information with live timelines, and explore comprehensive player statistics and profiles. Stay updated with the latest football news and easily search across teams, players, and matches all in one place.
uefa.com API
Track detailed player performance across UEFA competitions like Champions League, Europa League, and Conference League with seasonal rankings and match-by-match statistics. Search players, compare their stats, and analyze individual performance metrics to stay informed on top European football talent.
cagematch.net API
Access the Cagematch.net wrestling database. Search for wrestlers, events, matches, promotions, and championship titles, and retrieve detailed profiles, career histories, and match results.
UFC Rankings API | ufc Fighter Data · Parse