# UFC — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access current UFC fighter rankings organized by weight class division, complete with champion information and the top 15 ranked fighters in each category. Use this to stay updated on fighter standings, track competitor positions, and discover who's competing at the elite level across all UFC divisions.

**Category:** Sports | **Website:** [www.ufc.com/athlete/jon-jones](https://www.ufc.com/athlete/jon-jones) | **Docs:** [parse.bot/marketplace/4373191f-c219-4b43-b45c-67b9c8a85305/ufc-com-api](https://parse.bot/marketplace/4373191f-c219-4b43-b45c-67b9c8a85305/ufc-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-ufc-com-api-4373191f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_rankings

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `division` | string | No | 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. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ufc-com-api-4373191f/get_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"division":"<string>"}'
```
