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 :

https://dde-api.data.imgarena.com/mma/weightclasses

Required Headers

Key

Value

Accept

application/vnd.imggaming.dde.api+json;version=1

Content-Type

application/json

Authorization

Bearer eyvhaoudfgpdfgo*

Request Parameters

This endpoint takes no parameters

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 UFC

abbreviation

string

Abbreviation of the weightclass

Sample Response

[
  {
    "weight": "170 and under",
    "description": "Lightweight",
    "id": 1,
    "obsolete": false,
    "abbreviation": "LW"
  },
  {
    "weight": null,
    "description": "Catch Weight",
    "id": 2,
    "obsolete": false,
    "abbreviation": "CW"
  },
  {
    "weight": "116-125",
    "description": "Women's Flyweight",
    "id": 3,
    "obsolete": false,
    "abbreviation": "WFLW"
  },
  {
    "weight": "186-205",
    "description": "Light Heavyweight",
    "id": 4,
    "obsolete": false,
    "abbreviation": "LHW"
  },
  {
    "weight": "136-145",
    "description": "Women's Featherweight",
    "id": 5,
    "obsolete": false,
    "abbreviation": "WFTW"
  },
  {
    "weight": "96-105",
    "description": "Women's Atomweight",
    "id": 6,
    "obsolete": false,
    "abbreviation": "WAW"
  },
  {
    "weight": null,
    "description": "Open Weight",
    "id": 7,
    "obsolete": false,
    "abbreviation": "OW"
  },
  {
    "weight": "Over 265",
    "description": "Super Heavyweight",
    "id": 8,
    "obsolete": false,
    "abbreviation": "SHW"
  },
  {
    "weight": "199 and under",
    "description": "Lightweight",
    "id": 9,
    "obsolete": false,
    "abbreviation": "LW"
  },
  {
    "weight": "126-135",
    "description": "Bantamweight",
    "id": 10,
    "obsolete": false,
    "abbreviation": "BW"
  },
  {
    "weight": "206-265",
    "description": "Heavyweight",
    "id": 11,
    "obsolete": false,
    "abbreviation": "HW"
  },
  {
    "weight": "126-135",
    "description": "Women's Bantamweight",
    "id": 12,
    "obsolete": false,
    "abbreviation": "WBW"
  },
  {
    "weight": "136-145",
    "description": "Featherweight",
    "id": 13,
    "obsolete": false,
    "abbreviation": "FTW"
  },
  {
    "weight": "146-155",
    "description": "Lightweight",
    "id": 14,
    "obsolete": false,
    "abbreviation": "LW"
  },
  {
    "weight": "171-185",
    "description": "Middleweight",
    "id": 15,
    "obsolete": false,
    "abbreviation": "MW"
  },
  {
    "weight": "156-170",
    "description": "Welterweight",
    "id": 16,
    "obsolete": false,
    "abbreviation": "WW"
  },
  {
    "weight": "106-115",
    "description": "Women's Strawweight",
    "id": 17,
    "obsolete": false,
    "abbreviation": "WSW"
  },
  {
    "weight": "200 and over",
    "description": "Heavyweight",
    "id": 18,
    "obsolete": false,
    "abbreviation": "HW"
  },
  {
    "weight": "116-125",
    "description": "Flyweight",
    "id": 19,
    "obsolete": false,
    "abbreviation": "FLW"
  },
  {
    "weight": "171-199",
    "description": "Middleweight",
    "id": 20,
    "obsolete": false,
    "abbreviation": "MW"
  },
  {
    "weight": null,
    "description": "Catch Weight",
    "id": 21,
    "obsolete": false,
    "abbreviation": "WCW"
  }
]

Last updated