> For the complete documentation index, see [llms.txt](https://docs.sportradar.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportradar.com/pfl-media/schedule-endpoints-restful/weightclasses-endpoint.md).

# WeightClasses Endpoint

This endpoint returns information on all weight classes. This information does not update very often, as weight classes change infrequently.

## **Endpoint URLs**

**For all weight classes :**

| Legacy - `https://dde-api.data.imgarena.com/mma/weightclasses` (Decommissioning 30th Sept 2026) |
| ----------------------------------------------------------------------------------------------- |
| **NEW** - `https://dde-api.data.srarena.io/mma/weightclasses`                                   |

## **Required Headers**

| Key           | Value                                            |
| ------------- | ------------------------------------------------ |
| Accept        | application/vnd.imggaming.dde.api+json;version=1 |
| Content-Type  | application/json                                 |
| Authorization | Bearer eyvhaoudfgpdfgo\*                         |

## Request Parameters

| Parameter | Description                                                        |
| --------- | ------------------------------------------------------------------ |
| org="pfl" | Filter out results based on the organisation, can pass org = "pfl" |

## **Response Model:**

### **Weightclasses Object**

| Field Name   | Type    | Description                                                    |
| ------------ | ------- | -------------------------------------------------------------- |
| weight       | string  | The weight range of the weightclass, in LB                     |
| description  | string  | A description of the weightclass                               |
| id           | int     | The ID of the weightclass                                      |
| obsolete     | boolean | Boolean, true if no longer used in PFL                         |
| abbreviation | string  | Abbreviation of the weightclass                                |
| organisation | string  | the organisation that the weightclass is associated to i,e PFL |

## **Sample Response**

```
 {
        "description": "Open Weight",
        "id": 22,
        "obsolete": false,
        "abbreviation": "OW",
        "weight": null,
        "organisation": "PFL"
    },
    {
        "description": "Women's Atomweight",
        "id": 23,
        "obsolete": false,
        "abbreviation": "WAW",
        "weight": "96-105",
        "organisation": "PFL"
    },
    {
        "description": "Lightweight",
        "id": 24,
        "obsolete": false,
        "abbreviation": "LW",
        "weight": "170 and under",
        "organisation": "PFL"
    },
    {
        "description": "Catch Weight",
        "id": 25,
        "obsolete": false,
        "abbreviation": "CW",
        "weight": null,
        "organisation": "PFL"
    },
    {
        "description": "Flyweight",
        "id": 26,
        "obsolete": false,
        "abbreviation": "FLW",
        "weight": "116-125",
        "organisation": "PFL"
    },
    {
        "description": "Middleweight",
        "id": 27,
        "obsolete": false,
        "abbreviation": "MW",
        "weight": "171-185",
        "organisation": "PFL"
    },
    {
        "description": "Heavyweight",
        "id": 28,
        "obsolete": false,
        "abbreviation": "HW",
        "weight": "206-265",
        "organisation": "PFL"
    },
    {
        "description": "Welterweight",
        "id": 29,
        "obsolete": false,
        "abbreviation": "WW",
        "weight": "156-170",
        "organisation": "PFL"
    },
    {
        "description": "Light Heavyweight",
        "id": 30,
        "obsolete": false,
        "abbreviation": "LHW",
        "weight": "186-205",
        "organisation": "PFL"
    },
    {
        "description": "Women's Featherweight",
        "id": 31,
        "obsolete": false,
        "abbreviation": "WFTW",
        "weight": "136-145",
        "organisation": "PFL"
    },
    {
        "description": "Catch Weight",
        "id": 32,
        "obsolete": false,
        "abbreviation": "WCW",
        "weight": null,
        "organisation": "PFL"
    },
    {
        "description": "Women's Bantamweight",
        "id": 33,
        "obsolete": false,
        "abbreviation": "WBW",
        "weight": "126-135",
        "organisation": "PFL"
    },
    {
        "description": "Featherweight",
        "id": 34,
        "obsolete": false,
        "abbreviation": "FTW",
        "weight": "136-145",
        "organisation": "PFL"
    },
    {
        "description": "Women's Flyweight",
        "id": 35,
        "obsolete": false,
        "abbreviation": "WFLW",
        "weight": "116-125",
        "organisation": "PFL"
    },
    {
        "description": "Super Heavyweight",
        "id": 36,
        "obsolete": false,
        "abbreviation": "SHW",
        "weight": "Over 265",
        "organisation": "PFL"
    },
    {
        "description": "Women's Strawweight",
        "id": 37,
        "obsolete": false,
        "abbreviation": "WSW",
        "weight": "106-115",
        "organisation": "PFL"
    }
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sportradar.com/pfl-media/schedule-endpoints-restful/weightclasses-endpoint.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
