# Fightcards Schedule Endpoint

This endpoint returns information on the schedule of a particular fightcard. Information returned includes: Detailed information on the fighters of each team, Estimated start time, Fighter Records & Weight class. This information is kept up to date every 5 minutes

## **Endpoint URLs**

| `https://dde-api.data.imgarena.com/mma/fightcards/{id}/schedule` |
| ---------------------------------------------------------------- |

## **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                                                                                                                                                                                                 |
| ------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 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                                                       |
| weightClass   | object  | An object containing information on the weight class                                                                                                                                                        |
| referee       | object  | Contains ID, First and last name of the referee for the fight. Note this will be null if no referee has been assigned to the match. IF not known, value will be null                                        |
| 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 1                  |
| fightcardId   | integer | the ID of the fightcard in which the fight is in                                                                                                                                                            |
| accolades     | object  | An object containing information on the belt & the name of the belt title. Note null can be returned if no accolade has been associated                                                                     |
| fightSeq      | integer | The fight sequence on the overall fightcard. 1 if first, 2 if second etc.                                                                                                                                   |
| redTeam       | object  | An object containing information on the fighter of the red team                                                                                                                                             |
| Date          | string  | the date of the fight                                                                                                                                                                                       |
| blueTeam      | object  | An object containing information on the fighter of the blue team                                                                                                                                            |
| status        | string  | the status of the fight. Possible values; “Upcoming”, “InProgress”, “Finished” or "Cancelled"                                                                                                               |
| cardSegment   | string  | The segment of the card that this fight belongs to. Options; main, prelims1, prelims2                                                                                                                       |
| fightId       | string  | The ID number of the fight                                                                                                                                                                                  |
| fightType     | object  | Contains information on the type of fight, total number of possible rounds                                                                                                                                  |
| bookingStatus | object  | information on whether or not a fight is booked                                                                                                                                                             |

### **startTime Object**

| Field Name | Type   | Description                                            |
| ---------- | ------ | ------------------------------------------------------ |
| status     | string | Status of the current start time e.g. "EstimatedStart" |
| time       | string | The start time of the fight + UTC offset format        |

### **Weightclass Object**

| Field Name   | Type    | Description                                                             |
| ------------ | ------- | ----------------------------------------------------------------------- |
| weight       | string  | the weight range, in lb, of the weightclass                             |
| description  | string  | description of the weightclass                                          |
| id           | integer | ID of the weightclass                                                   |
| obsolete     | Boolean | Details whether the weightclass is still active within the organisation |
| abbreviation | string  | abbreviated description of the weightclass                              |
| organisation | string  | The organisation that the weightclass is associated to i,e PFL          |

### **Referee Object**

| Field Name | Type    | Description                   |
| ---------- | ------- | ----------------------------- |
| id         | integer | the ID of the referee         |
| firstName  | string  | the first name of the referee |
| lastName   | string  | the last name of the referee  |

### **Accolades Object**

| Field Name | Type   | Description           |
| ---------- | ------ | --------------------- |
| belt       | string | the type of belt      |
| name       | string | the title of the belt |

### **Red Team Object**

| Field Name | Type   | Description                                                               |
| ---------- | ------ | ------------------------------------------------------------------------- |
| fighter1   | object | detailed information on the fighter under the red team                    |
| rank       | string | the fighters current rank. (may appear null if the fighter is not ranked) |
| accolades  | object | -                                                                         |

### **fighter1 Object**

| Field Name    | Type            | Description                                                                                            |
| ------------- | --------------- | ------------------------------------------------------------------------------------------------------ |
| reach         | decimal         | the reach, in inches, of the fighter. Will be null if unknown.                                         |
| dob           | date            | the date of birth of the fighter                                                                       |
| fightsOutOf   | string          | the city, state, country, country code of where the fighter currently fights out of                    |
| height        | integer         | the height, in inches, of the fighter. Will be null if unknown.                                        |
| country       | string          | country code of the fighter                                                                            |
| age           | integer         | the age of the fighter                                                                                 |
| weighInWeight | float           | the weigh in weight, in lb, of the fighter. Will be null if unknown.                                   |
| lastName      | string          | the last name of the fighter                                                                           |
| stance        | string          | the stance of the fighter. Possible values; Orthodox, Southpaw, Switch, Open. Will be null if unknown. |
| firstName     | string          | the first name of the fighter                                                                          |
| nickName      | string          | the nickname of the fighter                                                                            |
| fighterId     | integer         | the id of the fighter                                                                                  |
| born          | string          | the city, state, country, country code of where the fighter was born                                   |
| 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.            |
| ufcFighterId  | integer or null | the UFC federation fighter id                                                                          |
| pflFighterId  | integer or null | the PFL federation fighter id                                                                          |

### Record Object

| Field Name | Type    | Description                                                         |
| ---------- | ------- | ------------------------------------------------------------------- |
| wins       | integer | the amount of professional wins a fighter has                       |
| losses     | integer | the amount of professional losses a fighter has                     |
| draws      | integer | the amount of professional draws a fighter has                      |
| noContest  | integer | the number of professional contests the fighter has participated in |

### **Blue Team Object**

| Field Name | Type   | Description                                                               |
| ---------- | ------ | ------------------------------------------------------------------------- |
| fighter1   | object | detailed information on the fighter under the blue team                   |
| rank       | string | the fighters current rank. (may appear null if the fighter is not ranked) |
| accolades  | object | appears to be null- even for champions                                    |

### **fightType Object**

| Field Name     | Type    | Description                         |
| -------------- | ------- | ----------------------------------- |
| possibleRounds | integer | the number of possible rounds       |
| description    | string  | description on the number of rounds |

### bookingStatus Object

| Field Name | Type   | Description |
| ---------- | ------ | ----------- |
| status     | string | -           |

## Sample Response

```
[
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "21:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 1,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11922,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 36,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "ufcFighterId": "2969",
        "fighterId": 6129,
        "dob": "1999-06-01",
        "fightsOutOf": null,
        "pflFighterId": 4567,
        "height": 68,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Cieplowski",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jan",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 8
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 70,
        "ufcFighterId": null,
        "fighterId": 6117,
        "dob": "1990-03-01",
        "fightsOutOf": null,
        "pflFighterId": 1245,
        "height": 68,
        "age": 35,
        "weighInWeight": null,
        "lastName": "Lopez",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Julien",
        "nickName": "BOYKA",
        "born": null,
        "record": {
          "draws": 1,
          "losses": 5,
          "noContests": 0,
          "wins": 7
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "InProgress"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "21:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 2,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11909,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 35,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 72,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Azizoun",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Anas",
        "nickName": "The Rainmaker",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 5
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 70,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 68,
        "age": 28,
        "weighInWeight": null,
        "lastName": "Oliveira",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Gustavo",
        "nickName": "Heart",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 11
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "20:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 3,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11906,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 34,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 67,
        "age": 33,
        "weighInWeight": null,
        "lastName": "Pirrello",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Gaetano",
        "nickName": "El Tigre",
        "born": null,
        "record": {
          "draws": 1,
          "losses": 7,
          "noContests": 0,
          "wins": 17
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": null,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 65,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Liga",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Salvatore",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 5
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "20:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 4,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11910,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": {
      "belt": "weightbelt",
      "name": "Undefeated with perfect 8-0 record"
    },
    "fightSeq": 33,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 68,
        "age": 21,
        "weighInWeight": null,
        "lastName": "Ibragimov",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Ibragim",
        "nickName": "THE MAULER",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 69,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 68,
        "age": 29,
        "weighInWeight": null,
        "lastName": "Duragrin",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Mathys",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 4
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "19:30Z"
    },
    "weightClass": {
      "weight": "96-105",
      "description": "Women's Atomweight",
      "id": 6,
      "obsolete": false,
      "abbreviation": "WAW"
    },
    "fightOrder": 5,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11905,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 32,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 72,
        "age": 28,
        "weighInWeight": null,
        "lastName": "Abaev",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Khamzat",
        "nickName": "Borz",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 5
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 72,
        "pflFighterId": 1234,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "ufcFighterId": null,
        "height": 70,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Noso Pedro",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Chequina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 4,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "19:00Z"
    },
    "weightClass": {
      "weight": "136-145",
      "description": "Featherweight",
      "id": 13,
      "obsolete": false,
      "abbreviation": "FTW"
    },
    "fightOrder": 6,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11911,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 31,
    "redTeam": {
      "fighter1": {
        "reach": null,
        "fighterId": 6114,
        "dob": "1994-05-28",
        "fightsOutOf": null,
        "height": 70,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Di Franco",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Nicolas",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 1,
          "losses": 5,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 67,
        "fighterId": 6126,
        "dob": "1995-08-01",
        "fightsOutOf": null,
        "height": 72,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Safta",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Catalin",
        "nickName": "AQUAMAN",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "18:30Z"
    },
    "weightClass": {
      "weight": "156-170",
      "description": "Welterweight",
      "id": 16,
      "obsolete": false,
      "abbreviation": "WW"
    },
    "fightOrder": 7,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11912,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 30,
    "redTeam": {
      "fighter1": {
        "reach": null,
        "fighterId": 6115,
        "dob": "1992-04-08",
        "fightsOutOf": null,
        "height": 66,
        "age": 33,
        "weighInWeight": null,
        "lastName": "Lapilus",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": "SWITCH",
        "firstName": "Taylor",
        "nickName": "Double Impact",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 4,
          "noContests": 0,
          "wins": 22
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 69,
        "fighterId": 6100,
        "dob": "1997-09-21",
        "fightsOutOf": null,
        "height": 67,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Taleb",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Ali",
        "nickName": "2024 PFL MENA BANTAMWEIGHT CHAMPION",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 12
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "18:00Z"
    },
    "weightClass": {
      "weight": "156-170",
      "description": "Welterweight",
      "id": 16,
      "obsolete": false,
      "abbreviation": "WW"
    },
    "fightOrder": 8,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11913,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 29,
    "redTeam": {
      "fighter1": {
        "reach": 74,
        "fighterId": 6116,
        "dob": "2003-07-09",
        "fightsOutOf": null,
        "height": 72,
        "age": 22,
        "weighInWeight": null,
        "lastName": "Giudice",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Salvo",
        "nickName": "KARATE KID",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 2
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 77,
        "fighterId": 6108,
        "dob": "1997-01-08",
        "fightsOutOf": null,
        "height": 73,
        "age": 28,
        "weighInWeight": null,
        "lastName": "Belghazi",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Brice",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 1
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "17:30Z"
    },
    "weightClass": {
      "weight": "106-115",
      "description": "Women's Strawweight",
      "id": 17,
      "obsolete": false,
      "abbreviation": "WSW"
    },
    "fightOrder": 9,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11884,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 28,
    "redTeam": {
      "fighter1": {
        "reach": 72,
        "fighterId": 6103,
        "dob": "1996-07-29",
        "fightsOutOf": null,
        "height": 69,
        "age": 29,
        "weighInWeight": null,
        "lastName": "Meskini",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Adam",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 69,
        "fighterId": 6132,
        "dob": "2000-02-29",
        "fightsOutOf": null,
        "height": 68,
        "age": 25,
        "weighInWeight": null,
        "lastName": "Ferranti",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Tiziano",
        "nickName": "The Golden Boy",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "17:00Z"
    },
    "weightClass": {
      "weight": "170 and under",
      "description": "Lightweight",
      "id": 1,
      "obsolete": false,
      "abbreviation": "LW"
    },
    "fightOrder": 10,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11888,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 27,
    "redTeam": {
      "fighter1": {
        "reach": 77,
        "fighterId": 6107,
        "dob": "2001-03-26",
        "fightsOutOf": null,
        "height": 73,
        "age": 24,
        "weighInWeight": null,
        "lastName": "Habirora",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Patrick",
        "nickName": "THE BELGIAN BOMBER",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 7
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 75,
        "fighterId": 6125,
        "dob": "1987-07-18",
        "fightsOutOf": null,
        "height": 73,
        "age": 38,
        "weighInWeight": null,
        "lastName": "Roberts",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Danny",
        "nickName": "Hot Chocolate",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 9,
          "noContests": 0,
          "wins": 18
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "16:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 11,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11876,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 26,
    "redTeam": {
      "fighter1": {
        "reach": 68,
        "fighterId": 6102,
        "dob": "1995-03-01",
        "fightsOutOf": null,
        "height": 67,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Khaled",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Fahdi",
        "nickName": "The Gladiator",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 2
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 67,
        "fighterId": 6123,
        "dob": "2001-06-18",
        "fightsOutOf": null,
        "height": 67,
        "age": 24,
        "weighInWeight": null,
        "lastName": "Batchelor",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Levi",
        "nickName": "Young Money",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 3
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "16:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 12,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11870,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 25,
    "redTeam": {
      "fighter1": {
        "reach": null,
        "fighterId": 6101,
        "dob": "1999-05-05",
        "fightsOutOf": null,
        "height": 68,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Ibragimov",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Movsar",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 7
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6122,
        "dob": "1994-04-26",
        "fightsOutOf": null,
        "height": 66,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Fanny",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Gerardo",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 6,
          "noContests": 0,
          "wins": 14
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "15:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 13,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11880,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 24,
    "redTeam": {
      "fighter1": {
        "reach": 68,
        "fighterId": 6104,
        "dob": "1999-12-05",
        "fightsOutOf": null,
        "height": 69,
        "age": 25,
        "weighInWeight": null,
        "lastName": "Campanella",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Mahio",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 1,
          "noContests": 0,
          "wins": 8
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 69,
        "fighterId": 6124,
        "dob": "1997-12-13",
        "fightsOutOf": null,
        "height": 66,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Zaharovs",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Matiss",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 4,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "15:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 14,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11881,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 23,
    "redTeam": {
      "fighter1": {
        "reach": 64,
        "fighterId": 6105,
        "dob": "1988-07-25",
        "fightsOutOf": null,
        "height": 66,
        "age": 37,
        "weighInWeight": null,
        "lastName": "Garnett",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Dean",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 1,
          "losses": 3,
          "noContests": 0,
          "wins": 13
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 65,
        "fighterId": 6131,
        "dob": "1994-02-24",
        "fightsOutOf": null,
        "height": 67,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Gronvall",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Tuomas",
        "nickName": "THE TANK ENGINE",
        "born": null,
        "record": {
          "draws": 1,
          "losses": 9,
          "noContests": 0,
          "wins": 12
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "14:30Z"
    },
    "weightClass": {
      "weight": "156-170",
      "description": "Welterweight",
      "id": 16,
      "obsolete": false,
      "abbreviation": "WW"
    },
    "fightOrder": 15,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11883,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 22,
    "redTeam": {
      "fighter1": {
        "reach": 76,
        "fighterId": 6106,
        "dob": "1999-05-01",
        "fightsOutOf": null,
        "height": 73,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Atangana",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Boris",
        "nickName": "Alain",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 73,
        "fighterId": 6118,
        "dob": "1991-10-07",
        "fightsOutOf": null,
        "height": 75,
        "age": 33,
        "weighInWeight": null,
        "lastName": "Santos",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Bruno",
        "nickName": "Predador",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 4,
          "noContests": 0,
          "wins": 3
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "14:00Z"
    },
    "weightClass": {
      "weight": "156-170",
      "description": "Welterweight",
      "id": 16,
      "obsolete": false,
      "abbreviation": "WW"
    },
    "fightOrder": 16,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11885,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 21,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "13:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 17,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11882,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 20,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "13:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 18,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11879,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 19,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "12:30Z"
    },
    "weightClass": {
      "weight": "171-185",
      "description": "Middleweight",
      "id": 15,
      "obsolete": false,
      "abbreviation": "MW"
    },
    "fightOrder": 19,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11890,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 18,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "12:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 20,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11887,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 17,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:30Z"
    },
    "weightClass": {
      "weight": "116-125",
      "description": "Flyweight",
      "id": 19,
      "obsolete": false,
      "abbreviation": "FLW"
    },
    "fightOrder": 21,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11891,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 16,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 22,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11868,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 15,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 23,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11872,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 14,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:30Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 24,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11878,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 13,
    "redTeam": {
      "fighter1": {
        "reach": 72,
        "fighterId": 6103,
        "dob": "1996-07-29",
        "fightsOutOf": null,
        "height": 69,
        "age": 29,
        "weighInWeight": null,
        "lastName": "Meskini",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Adam",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "height": 72,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Azizoun",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Anas",
        "nickName": "The Rainmaker",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 5
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Upcoming"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 25,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11873,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 12,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 26,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11918,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 11,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 27,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11916,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 10,
    "redTeam": {
      "fighter1": {
        "reach": 69,
        "fighterId": 6100,
        "dob": "1997-09-21",
        "fightsOutOf": null,
        "height": 67,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Taleb",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Ali",
        "nickName": "2024 PFL MENA BANTAMWEIGHT CHAMPION",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 12
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 72,
        "fighterId": 6103,
        "dob": "1996-07-29",
        "fightsOutOf": null,
        "height": 69,
        "age": 29,
        "weighInWeight": null,
        "lastName": "Meskini",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Adam",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 28,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11896,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 9,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 30,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11900,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 7,
    "redTeam": {
      "fighter1": {
        "reach": 72,
        "fighterId": 6103,
        "dob": "1996-07-29",
        "fightsOutOf": null,
        "height": 69,
        "age": 29,
        "weighInWeight": null,
        "lastName": "Meskini",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Adam",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 10
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 69,
        "fighterId": 6100,
        "dob": "1997-09-21",
        "fightsOutOf": null,
        "height": 67,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Taleb",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Ali",
        "nickName": "2024 PFL MENA BANTAMWEIGHT CHAMPION",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 12
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 30,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11893,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 7,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 32,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11902,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 5,
    "redTeam": {
      "fighter1": {
        "reach": 76,
        "fighterId": 6106,
        "dob": "1999-05-01",
        "fightsOutOf": null,
        "height": 73,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Atangana",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Boris",
        "nickName": "Alain",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6099,
        "dob": "1998-07-11",
        "fightsOutOf": null,
        "height": 72,
        "age": 27,
        "weighInWeight": null,
        "lastName": "Azizoun",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Anas",
        "nickName": "The Rainmaker",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 5
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 33,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11907,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 4,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 33,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11920,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 4,
    "redTeam": {
      "fighter1": {
        "reach": 73,
        "fighterId": 6118,
        "dob": "1991-10-07",
        "fightsOutOf": null,
        "height": 75,
        "age": 33,
        "weighInWeight": null,
        "lastName": "Santos",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Bruno",
        "nickName": "Predador",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 4,
          "noContests": 0,
          "wins": 3
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 75,
        "fighterId": 6125,
        "dob": "1987-07-18",
        "fightsOutOf": null,
        "height": 73,
        "age": 38,
        "weighInWeight": null,
        "lastName": "Roberts",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Danny",
        "nickName": "Hot Chocolate",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 9,
          "noContests": 0,
          "wins": 18
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 34,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11914,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 3,
    "redTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6122,
        "dob": "1994-04-26",
        "fightsOutOf": null,
        "height": 66,
        "age": 31,
        "weighInWeight": null,
        "lastName": "Fanny",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Gerardo",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 6,
          "noContests": 0,
          "wins": 14
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 64,
        "fighterId": 6105,
        "dob": "1988-07-25",
        "fightsOutOf": null,
        "height": 66,
        "age": 37,
        "weighInWeight": null,
        "lastName": "Garnett",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Dean",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 1,
          "losses": 3,
          "noContests": 0,
          "wins": 13
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 35,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11898,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 2,
    "redTeam": {
      "fighter1": {
        "reach": 77,
        "fighterId": 6108,
        "dob": "1997-01-08",
        "fightsOutOf": null,
        "height": 73,
        "age": 28,
        "weighInWeight": null,
        "lastName": "Belghazi",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Brice",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 2,
          "noContests": 0,
          "wins": 1
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 67,
        "fighterId": 6126,
        "dob": "1995-08-01",
        "fightsOutOf": null,
        "height": 72,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Safta",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Catalin",
        "nickName": "AQUAMAN",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 3,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  },
  {
    "startTime": {
      "status": "EstimatedStart",
      "time": "11:00Z"
    },
    "weightClass": {
      "weight": "186-205",
      "description": "Light Heavyweight",
      "id": 4,
      "obsolete": false,
      "abbreviation": "LHW"
    },
    "fightOrder": 36,
    "date": "2025-07-05",
    "cardSegment": null,
    "fightId": 11923,
    "fightType": {
      "description": "3 Rnd (5-5-5)",
      "possibleRounds": 3
    },
    "bookingStatus": {
      "status": "AutoBooked"
    },
    "referee": null,
    "startTimeText": "Follows Previous",
    "fightcardId": 2424,
    "accolades": null,
    "fightSeq": 1,
    "redTeam": {
      "fighter1": {
        "reach": 66,
        "fighterId": 6097,
        "dob": "1998-11-27",
        "fightsOutOf": null,
        "height": 66,
        "age": 26,
        "weighInWeight": null,
        "lastName": "Wisniewska",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Paulina",
        "nickName": null,
        "born": null,
        "record": {
          "draws": 0,
          "losses": 0,
          "noContests": 0,
          "wins": 6
        }
      },
      "rank": null,
      "accolades": null
    },
    "blueTeam": {
      "fighter1": {
        "reach": 63,
        "fighterId": 6120,
        "dob": "1994-11-08",
        "fightsOutOf": null,
        "height": 62,
        "age": 30,
        "weighInWeight": null,
        "lastName": "Cunha",
        "fightsOutOfCountyCode": null,
        "country": null,
        "stance": null,
        "firstName": "Jessica",
        "nickName": "Só Na Manha",
        "born": null,
        "record": {
          "draws": 0,
          "losses": 5,
          "noContests": 0,
          "wins": 9
        }
      },
      "rank": null,
      "accolades": null
    },
    "status": "Finished"
  }
]
```
