Live Events Endpoint

This endpoint returns information on a fight when it is live

Endpoint URLs

https://dde-api.data.imgarena.com/mma/fightcards/liveevents

This endpoint returns live fights with the status InProgress, no other statuses allow the fight to be present in the endpoint.

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:

Fightcard Schedule Object

Field Name

Type

Description

date

date

the date of the fight

startTime

object

an object containing “status” – the status of the start time, e.g. EstimatedStart, and “time”, the estimated start time, in local + UTC offset format

startTimeText

string

text description of the start time. Note that the start time object contains detailed information about the start and is likely to be more useful than this field. Main values; Starts At, Follows Previous

fightOrder

integer

The fight’s order on the card. Fight number 1 is the main event, 2 is the co-main event and so on, so that the first fight of the night has the highest number. The main event is always

fightSeq

integer

The fight sequence on the overall fightcard. 1 if first, 2 if second, etc

fightcardId

integer

the ID of the fightcard in which the fight is in

fightId

integer

the ID of the fight

fightType

object

contains information on the type of fight, how many possible rounds there could be

cardSegment

string

the segment of the card that this fight belongs to. Options; main, prelims1, prelims2

Red/Blue Team Object

Field Name

Type

Description

weighInWeight

integer

the weigh in weight, in lb, of the fighter. Will be null if unknown.

reach

decimal

the reach, in inches, of the fighter. Will be null if unknown.

height

integer

the height, in inches, of the fighter. Will be null if unknown.

stance

string

the stance of the fighter. Possible values; Orthodox, Southpaw, Switch, Open. Will be null if unknown.

country

string

country code of the fighter

lastName

string

the last name of the fighter

firstName

string

the first name of the fighter

nickName

string

the nickname of the fighter

age

integer

the age of the fighter

dob

date

the date of birth of the fighter

born

string

the city, state, country, country code of where the fighter was born

fightsOutOf

string

the city, state, country, country code of where the fighter currently fights out of

rank

integer

the current rank of the fighter within his weightclass

record

object

win/loss/draw/no contest record of the fighter

accolades

string

will be null unless a title holder. If not null, will explain what title the fighter holds.

Sample Response

[
  {
    "startTime": {
      "status": "NotKnown"
    },
    "startTimeText": "Follows Previous",
    "fightOrder": 11,
    "fightcardId": 1996,
    "date": "2024-11-09",
    "blueTeam": {
      "fighter1": {
        "reach": null,
        "dob": "1998-12-30",
        "fightsOutOf": "Poznan, Greater Poland, POL",
        "height": null,
        "age": 25,
        "weighInWeight": null,
        "lastName": "Sygula",
        "fightsOutOfCountyCode": "POL",
        "country": "POL",
        "stance": "ORTHODOX",
        "id": 5653,
        "firstName": "Klaudia",
        "nickName": null,
        "born": "Poddebice, Lodz, POL",
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "cardSegment": "prelims1",
    "fightId": 11144,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "fightSeq": 3,
    "redTeam": {
      "fighter1": {
        "reach": 68,
        "dob": "1991-07-23",
        "fightsOutOf": "Coventry, England, GBR",
        "height": 67,
        "age": 33,
        "weighInWeight": null,
        "lastName": "Dixon",
        "fightsOutOfCountyCode": "GBR",
        "country": "GBR",
        "stance": "ORTHODOX",
        "id": 4598,
        "firstName": "Melissa",
        "nickName": "No Mess",
        "born": "Oxford, England, GBR",
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    }
  }
]

Last updated