# Fight Stats

This web socket endpoint returns the live stats data per fight. Once a fight commences the live information will visible and you'll be able to view the live stats

## **Endpoint URL**

| `wss://dde-streams.data.imgarena.com/mma/fights/{id}/livestats` |
| --------------------------------------------------------------- |

**Process for connecting to the web socket endpoints**

* Connect to the SSL websocket address
* Send JSON packet containing API token
* Receive response indicating that connection is authorised (or a response indicating why the connection cannot be made)
* Receive heartbeat packets every 10 seconds to verify the connection is live
* Receive data packets

Once you have sent the API token, any further data that you send over the connection will be ignored.

## Request Parameters

| **Parameter** | **Type** | **Purpose**                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| startPosition | integer  | <p>The position in the stream that you want to start from.<br>Each packet in the stream has a sequence number ('seqNum'), where 1 is the first packet in the stream. By default the stream will start from the beginning.</p><p>This is useful if you get disconnected from a stream and need to reconnect. When reconnecting, if you specify the seqNum of the last packet you received + 1, then you can pick up where you left off without need to reprocess all the events already received.</p> |

## Response Model

Each stats packet sent over the websocket has the following format:

| **Field Name**   | **Type** | **Description**                                                        |
| ---------------- | -------- | ---------------------------------------------------------------------- |
| seqNum           | integer  | The sequence number of the packet                                      |
| timestamp        | string   | ISO8601 datetime string representing the time the packet was generated |
| fighters         | object   | Name and fighter ID for the red and blue fighters                      |
| roundStats       | string   | A breakdown of the full stat summary for each fighter in each round    |
| fightStats       | object   | A full stat summary for each fighter for the overall fight             |
| fightCardId      | integer  | The ID of the fight card                                               |
| currentRound     | integer  | Which round is currently in progress                                   |
| fightId          | integer  | The ID of the fight in our database                                    |
| maxRounds        | integer  | The maximum number of rounds in this fight; normally either 3 or 5     |
| accolade         | string   | The accolade of the fight. Optional.                                   |
| referee          | string   | The full name of this fight’s referee                                  |
| weightclass      | string   | The fight’s weight class name                                          |
| status           | string   |                                                                        |
| currentRoundTime | string   | The current round time, counting down from 5 minutes at the start      |
| fighters         | object   | information on the fighters                                            |

## Fighter object

Object broken down into blue and red team

| **Field Name** | **Type** | **Description**                                              |
| -------------- | -------- | ------------------------------------------------------------ |
| name           | string   | fighter name                                                 |
| fighterId      | integer  | The ID of the fighter to which these stats refer             |
| ufcFighterId   | string   | The UFC fighter ID of the fighter to which these stats refer |
| pflFighterId   | string   | PFL fighter Id, will be null                                 |

## fightStats objects

Object broken down into blue and red team

| **Field Name** | **Type** | **Description**                                              |
| -------------- | -------- | ------------------------------------------------------------ |
| TIP            | object   | Time in Position stats                                       |
| grappling      | object   | Breakdown of stats in grappling positions                    |
| strikes        | object   | Breakdown of stats in strikes positions                      |
| fighterId      | integer  | The ID of the fighter to which these stats refer             |
| ufcFighterId   | string   | The UFC fighter ID of the fighter to which these stats refer |
| pflFighterId   | string   | PFL fighter Id, will be null                                 |

## TIPS (Time In Positions) object

| **Field Name**        | **Type** | **Description**                               |
| --------------------- | -------- | --------------------------------------------- |
| backControlTime       | string   | Time spend in backControlTime positions       |
| controlTime           | string   | Time spend in controlTime positions           |
| distanceTime          | string   | Time spend in distanceTime positions          |
| groundControlTime     | string   | Time spend in groundControlTime positions     |
| groundTime            | string   | Time spend in groundTime positions            |
| guardControlTime      | string   | Time spend in guardControlTime positions      |
| halfGuardControlTime  | string   | Time spend in halfGuardControlTime positions  |
| miscGroundControlTime | string   | Time spend in miscGroundControlTime positions |
| mountControlTime      | string   | Time spend in mountControlTime positions      |
| neutralTime           | string   | Time spend in neutralTime positions           |
| sideControlTime       | string   | Time spend in sideControlTime positions       |
| standingTime          | string   | Time spend in standingTime positions          |

## grappling object

| **Field Name** | **Type** | **Description**                                                           |
| -------------- | -------- | ------------------------------------------------------------------------- |
| reversals      | object   | Object contains the number of attempts reversals and landed reversals     |
| standups       | object   | Object contains the number of attempts standups and landed standups       |
| submissions    | object   | Object contains the number of attempts submissions and landed submissions |
| takedowns      | object   | Object contains the number of attempts takedowns and landed takedowns     |

## roundStats object

Stats are also availble at round level

| **Field Name** | **Type** | **Description**                                                                                                                                               |
| -------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Round number   | object   | Each round is broken down by red and blue corner. Contains TIP, grappling and strikes per round. Please view the revelent object tables for more information. |

## Sample Response:

Here’s a sample of the output we have for fight 9325, Carlos Prates vs. Ian Machado Garry; this is one packet from near the end of the fight. Each packet contains a full new set of stats for the fight so far, replacing the calculated stats of the last packet. We only send a new packet (with a new sequence number) when the stats have changed.

```
{
  "currentRound": 5,
  "currentRoundTime": "00:00",
  "fightCardId": 953,
  "fightId": 9325,
  "fightStats": {
    "blue": {
      "TIP": {
        "backControlTime": "00:00",
        "clinchTime": "03:22",
        "controlTime": "01:46",
        "distanceTime": "18:43",
        "groundControlTime": "01:05",
        "groundTime": "02:55",
        "guardControlTime": "00:00",
        "halfGuardControlTime": "00:12",
        "miscGroundControlTime": "00:53",
        "mountControlTime": "00:00",
        "neutralTime": "20:05",
        "sideControlTime": "00:00",
        "standingTime": "22:05"
      },
      "fighterId": 4147,
      "grappling": {
        "reversals": {
          "attempts": 0,
          "landed": 0
        },
        "standups": {
          "attempts": 0,
          "landed": 4
        },
        "submissions": {
          "attempts": 0,
          "landed": 0
        },
        "takedowns": {
          "attempts": 0,
          "landed": 0
        }
      },
      "strikes": {
        "bodySignificantStrikes": {
          "attempts": 18,
          "landed": 8
        },
        "bodyTotalStrikes": {
          "attempts": 18,
          "landed": 8
        },
        "clinchBodyStrikes": {
          "attempts": 2,
          "landed": 0
        },
        "clinchHeadStrikes": {
          "attempts": 11,
          "landed": 3
        },
        "clinchLegStrikes": {
          "attempts": 0,
          "landed": 0
        },
        "clinchSignificantKicks": {
          "attempts": 2,
          "landed": 0
        },
        "clinchSignificantStrikes": {
          "attempts": 13,
          "landed": 3
        },
        "clinchTotalStrikes": {
          "attempts": 13,
          "landed": 3
        },
        "distanceBodyKicks": {
          "attempts": 15,
          "landed": 7
        },
        "distanceBodyStrikes": {
          "attempts": 15,
          "landed": 7
        },
        "distanceHeadStrikes": {
          "attempts": 78,
          "landed": 24
        },
        "distanceLegKicks": {
          "attempts": 12,
          "landed": 7
        },
        "distanceLegStrikes": {
          "attempts": 12,
          "landed": 7
        },
        "distanceStrikes": {
          "attempts": 105,
          "landed": 38
        },
        "groundBodyStrikes": {
          "attempts": 1,
          "landed": 1
        },
        "groundHeadStrikes": {
          "attempts": 15,
          "landed": 13
        },
        "groundLegStrikes": {
          "attempts": 0,
          "landed": 0
        },
        "groundSignificantStrikes": {
          "attempts": 16,
          "landed": 14
        },
        "groundTotalStrikes": {
          "attempts": 17,
          "landed": 15
        },
        "headSignificantStrikes": {
          "attempts": 104,
          "landed": 40
        },
        "headTotalStrikes": {
          "attempts": 105,
          "landed": 41
        },
        "knockDown": {
          "attempts": 0,
          "landed": 0
        },
        "legsSignificantStrikes": {
          "attempts": 12,
          "landed": 7
        },
        "legsTotalStrikes": {
          "attempts": 12,
          "landed": 7
        },
        "significantStrikes": {
          "attempts": 134,
          "landed": 55
        },
        "totalStrikes": {
          "attempts": 135,
          "landed": 56
        }
      },
      "ufcFighterId": "4075"
      "pflFighterId": null
    },
    "red": {
      "TIP": {
        "backControlTime": "00:00",
        "clinchTime": "03:22",
        "controlTime": "03:09",
        "distanceTime": "18:43",
        "groundControlTime": "01:50",
        "groundTime": "02:55",
        "guardControlTime": "00:25",
        "halfGuardControlTime": "00:00",
        "miscGroundControlTime": "01:25",
        "mountControlTime": "00:00",
        "neutralTime": "20:05",
        "sideControlTime": "00:00",
        "standingTime": "22:05"
      },
      "fighterId": 3742,
      "grappling": {
        "reversals": {
          "attempts": 0,
          "landed": 0
        },
        "standups": {
          "attempts": 0,
          "landed": 0
        },
        "submissions": {
          "attempts": 0,
          "landed": 0
        },
        "takedowns": {
          "attempts": 19,
          "landed": 4
        }
      },
      "strikes": {
        "bodySignificantStrikes": {
          "attempts": 26,
          "landed": 18
        },
        "bodyTotalStrikes": {
          "attempts": 26,
          "landed": 18
        },
        "clinchBodyStrikes": {
          "attempts": 3,
          "landed": 2
        },
        "clinchHeadStrikes": {
          "attempts": 9,
          "landed": 5
        },
        "clinchLegStrikes": {
          "attempts": 0,
          "landed": 0
        },
        "clinchSignificantKicks": {
          "attempts": 3,
          "landed": 2
        },
        "clinchSignificantStrikes": {
          "attempts": 12,
          "landed": 7
        },
        "clinchTotalStrikes": {
          "attempts": 17,
          "landed": 12
        },
        "distanceBodyKicks": {
          "attempts": 22,
          "landed": 15
        },
        "distanceBodyStrikes": {
          "attempts": 22,
          "landed": 15
        },
        "distanceHeadStrikes": {
          "attempts": 184,
          "landed": 61
        },
        "distanceLegKicks": {
          "attempts": 27,
          "landed": 25
        },
        "distanceLegStrikes": {
          "attempts": 27,
          "landed": 25
        },
        "distanceStrikes": {
          "attempts": 233,
          "landed": 101
        },
        "groundBodyStrikes": {
          "attempts": 1,
          "landed": 1
        },
        "groundHeadStrikes": {
          "attempts": 5,
          "landed": 3
        },
        "groundLegStrikes": {
          "attempts": 0,
          "landed": 0
        },
        "groundSignificantStrikes": {
          "attempts": 6,
          "landed": 4
        },
        "groundTotalStrikes": {
          "attempts": 17,
          "landed": 13
        },
        "headSignificantStrikes": {
          "attempts": 198,
          "landed": 69
        },
        "headTotalStrikes": {
          "attempts": 212,
          "landed": 81
        },
        "knockDown": {
          "attempts": 0,
          "landed": 0
        },
        "legsSignificantStrikes": {
          "attempts": 27,
          "landed": 25
        },
        "legsTotalStrikes": {
          "attempts": 29,
          "landed": 27
        },
        "significantStrikes": {
          "attempts": 251,
          "landed": 112
        },
        "totalStrikes": {
          "attempts": 267,
          "landed": 126
        }
      },
      "ufcFighterId": "3717",
      "pflFighterId": null
    }
  },
  "fighters": {
    "blue": {
      "fighterId": 4147,
      "name": "Carlos Prates",
      "ufcFighterId": "4075",
      "pflFighterId": null
    },
    "red": {
      "fighterId": 3742,
      "name": "Ian Machado Garry",
      "ufcFighterId": "3717",
      "pflFighterId": null
    }
  },
  "maxRounds": 5,
  "referee": "Dan Miragliotta",
  "roundStats": {
    "1": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:02",
          "controlTime": "00:02",
          "distanceTime": "04:46",
          "groundControlTime": "00:00",
          "groundTime": "00:12",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:46",
          "sideControlTime": "00:00",
          "standingTime": "04:48"
        },
        "fighterId": "4147",
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 2,
            "landed": 0
          },
          "bodyTotalStrikes": {
            "attempts": 2,
            "landed": 0
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceBodyKicks": {
            "attempts": 2,
            "landed": 0
          },
          "distanceBodyStrikes": {
            "attempts": 2,
            "landed": 0
          },
          "distanceHeadStrikes": {
            "attempts": 10,
            "landed": 1
          },
          "distanceLegKicks": {
            "attempts": 5,
            "landed": 3
          },
          "distanceLegStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "distanceStrikes": {
            "attempts": 17,
            "landed": 4
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 10,
            "landed": 1
          },
          "headTotalStrikes": {
            "attempts": 10,
            "landed": 1
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "legsTotalStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "significantStrikes": {
            "attempts": 17,
            "landed": 4
          },
          "totalStrikes": {
            "attempts": 17,
            "landed": 4
          }
        },
        "ufcFighterId": "4075",
        "pflFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:02",
          "controlTime": "00:12",
          "distanceTime": "04:46",
          "groundControlTime": "00:12",
          "groundTime": "00:12",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:12",
          "mountControlTime": "00:00",
          "neutralTime": "04:46",
          "sideControlTime": "00:00",
          "standingTime": "04:48"
        },
        "fighterId": 3742,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 1,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 8,
            "landed": 6
          },
          "bodyTotalStrikes": {
            "attempts": 8,
            "landed": 6
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceBodyKicks": {
            "attempts": 7,
            "landed": 5
          },
          "distanceBodyStrikes": {
            "attempts": 7,
            "landed": 5
          },
          "distanceHeadStrikes": {
            "attempts": 23,
            "landed": 2
          },
          "distanceLegKicks": {
            "attempts": 6,
            "landed": 5
          },
          "distanceLegStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "distanceStrikes": {
            "attempts": 36,
            "landed": 12
          },
          "groundBodyStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "groundHeadStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "groundTotalStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "headSignificantStrikes": {
            "attempts": 27,
            "landed": 5
          },
          "headTotalStrikes": {
            "attempts": 27,
            "landed": 5
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "legsTotalStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "significantStrikes": {
            "attempts": 41,
            "landed": 16
          },
          "totalStrikes": {
            "attempts": 41,
            "landed": 16
          }
        },
        "ufcFighterId": "3717",
        "pflFighterId": null
      }
    },
    "2": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:29",
          "controlTime": "00:24",
          "distanceTime": "04:27",
          "groundControlTime": "00:04",
          "groundTime": "00:04",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:04",
          "mountControlTime": "00:00",
          "neutralTime": "04:36",
          "sideControlTime": "00:00",
          "standingTime": "04:56"
        },
        "fighterId": 4147,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 3,
            "landed": 1
          },
          "bodyTotalStrikes": {
            "attempts": 3,
            "landed": 1
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceBodyKicks": {
            "attempts": 3,
            "landed": 1
          },
          "distanceBodyStrikes": {
            "attempts": 3,
            "landed": 1
          },
          "distanceHeadStrikes": {
            "attempts": 15,
            "landed": 5
          },
          "distanceLegKicks": {
            "attempts": 5,
            "landed": 3
          },
          "distanceLegStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "distanceStrikes": {
            "attempts": 23,
            "landed": 9
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 15,
            "landed": 5
          },
          "headTotalStrikes": {
            "attempts": 15,
            "landed": 5
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "legsTotalStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "significantStrikes": {
            "attempts": 23,
            "landed": 9
          },
          "totalStrikes": {
            "attempts": 23,
            "landed": 9
          }
        },
        "ufcFighterId": "4075",
        "pflFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:29",
          "controlTime": "00:00",
          "distanceTime": "04:27",
          "groundControlTime": "00:00",
          "groundTime": "00:04",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:36",
          "sideControlTime": "00:00",
          "standingTime": "04:56"
        },
        "fighterId": 3742,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 2,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 8,
            "landed": 4
          },
          "bodyTotalStrikes": {
            "attempts": 8,
            "landed": 4
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 3,
            "landed": 2
          },
          "distanceBodyKicks": {
            "attempts": 8,
            "landed": 4
          },
          "distanceBodyStrikes": {
            "attempts": 8,
            "landed": 4
          },
          "distanceHeadStrikes": {
            "attempts": 50,
            "landed": 17
          },
          "distanceLegKicks": {
            "attempts": 8,
            "landed": 8
          },
          "distanceLegStrikes": {
            "attempts": 8,
            "landed": 8
          },
          "distanceStrikes": {
            "attempts": 66,
            "landed": 29
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 51,
            "landed": 17
          },
          "headTotalStrikes": {
            "attempts": 53,
            "landed": 19
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 8,
            "landed": 8
          },
          "legsTotalStrikes": {
            "attempts": 8,
            "landed": 8
          },
          "significantStrikes": {
            "attempts": 67,
            "landed": 29
          },
          "totalStrikes": {
            "attempts": 69,
            "landed": 31
          }
        },
        "ufcFighterId": "3717",
        "pflFighterId": null
      }
    },
    "3": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:41",
          "controlTime": "00:19",
          "distanceTime": "03:13",
          "groundControlTime": "00:00",
          "groundTime": "01:06",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "03:16",
          "sideControlTime": "00:00",
          "standingTime": "03:54"
        },
        "fighterId": 4147,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 4,
            "landed": 2
          },
          "bodyTotalStrikes": {
            "attempts": 4,
            "landed": 2
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceBodyKicks": {
            "attempts": 4,
            "landed": 2
          },
          "distanceBodyStrikes": {
            "attempts": 4,
            "landed": 2
          },
          "distanceHeadStrikes": {
            "attempts": 14,
            "landed": 4
          },
          "distanceLegKicks": {
            "attempts": 0,
            "landed": 0
          },
          "distanceLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceStrikes": {
            "attempts": 18,
            "landed": 6
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 14,
            "landed": 4
          },
          "headTotalStrikes": {
            "attempts": 14,
            "landed": 4
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "legsTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "significantStrikes": {
            "attempts": 18,
            "landed": 6
          },
          "totalStrikes": {
            "attempts": 18,
            "landed": 6
          }
        },
        "ufcFighterId": "4075",
        "pflFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:41",
          "controlTime": "01:25",
          "distanceTime": "03:13",
          "groundControlTime": "01:06",
          "groundTime": "01:06",
          "guardControlTime": "00:25",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:41",
          "mountControlTime": "00:00",
          "neutralTime": "03:16",
          "sideControlTime": "00:00",
          "standingTime": "03:54"
        },
        "fighterId": 3742,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 3,
            "landed": 2
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "bodyTotalStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "clinchBodyStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchHeadStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 1,
            "landed": 1
          },
          "clinchSignificantStrikes": {
            "attempts": 3,
            "landed": 2
          },
          "clinchTotalStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "distanceBodyKicks": {
            "attempts": 4,
            "landed": 3
          },
          "distanceBodyStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "distanceHeadStrikes": {
            "attempts": 46,
            "landed": 13
          },
          "distanceLegKicks": {
            "attempts": 3,
            "landed": 3
          },
          "distanceLegStrikes": {
            "attempts": 3,
            "landed": 3
          },
          "distanceStrikes": {
            "attempts": 53,
            "landed": 19
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 9,
            "landed": 7
          },
          "headSignificantStrikes": {
            "attempts": 48,
            "landed": 14
          },
          "headTotalStrikes": {
            "attempts": 58,
            "landed": 22
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 3,
            "landed": 3
          },
          "legsTotalStrikes": {
            "attempts": 4,
            "landed": 4
          },
          "significantStrikes": {
            "attempts": 56,
            "landed": 21
          },
          "totalStrikes": {
            "attempts": 67,
            "landed": 30
          }
        },
        "ufcFighterId": "3717",
        "pflFighterId": null
      }
    },
    "4": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "01:21",
          "controlTime": "00:00",
          "distanceTime": "03:07",
          "groundControlTime": "00:00",
          "groundTime": "00:32",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:02",
          "sideControlTime": "00:00",
          "standingTime": "04:28"
        },
        "fighterId": 4147,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 5,
            "landed": 2
          },
          "bodyTotalStrikes": {
            "attempts": 5,
            "landed": 2
          },
          "clinchBodyStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 9,
            "landed": 3
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 1,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 10,
            "landed": 3
          },
          "clinchTotalStrikes": {
            "attempts": 10,
            "landed": 3
          },
          "distanceBodyKicks": {
            "attempts": 4,
            "landed": 2
          },
          "distanceBodyStrikes": {
            "attempts": 4,
            "landed": 2
          },
          "distanceHeadStrikes": {
            "attempts": 14,
            "landed": 6
          },
          "distanceLegKicks": {
            "attempts": 2,
            "landed": 1
          },
          "distanceLegStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "distanceStrikes": {
            "attempts": 20,
            "landed": 9
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 23,
            "landed": 9
          },
          "headTotalStrikes": {
            "attempts": 23,
            "landed": 9
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "legsTotalStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "significantStrikes": {
            "attempts": 30,
            "landed": 12
          },
          "totalStrikes": {
            "attempts": 30,
            "landed": 12
          }
        },
        "ufcFighterId": "4075",
        "pflFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "01:21",
          "controlTime": "00:58",
          "distanceTime": "03:07",
          "groundControlTime": "00:32",
          "groundTime": "00:32",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:32",
          "mountControlTime": "00:00",
          "neutralTime": "04:02",
          "sideControlTime": "00:00",
          "standingTime": "04:28"
        },
        "fighterId": 3742,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 7,
            "landed": 2
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "bodyTotalStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "clinchBodyStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "clinchHeadStrikes": {
            "attempts": 5,
            "landed": 3
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 2,
            "landed": 1
          },
          "clinchSignificantStrikes": {
            "attempts": 7,
            "landed": 4
          },
          "clinchTotalStrikes": {
            "attempts": 7,
            "landed": 4
          },
          "distanceBodyKicks": {
            "attempts": 2,
            "landed": 2
          },
          "distanceBodyStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceHeadStrikes": {
            "attempts": 29,
            "landed": 9
          },
          "distanceLegKicks": {
            "attempts": 5,
            "landed": 5
          },
          "distanceLegStrikes": {
            "attempts": 5,
            "landed": 5
          },
          "distanceStrikes": {
            "attempts": 36,
            "landed": 16
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "headSignificantStrikes": {
            "attempts": 34,
            "landed": 12
          },
          "headTotalStrikes": {
            "attempts": 36,
            "landed": 14
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 5,
            "landed": 5
          },
          "legsTotalStrikes": {
            "attempts": 5,
            "landed": 5
          },
          "significantStrikes": {
            "attempts": 43,
            "landed": 20
          },
          "totalStrikes": {
            "attempts": 45,
            "landed": 22
          }
        },
        "ufcFighterId": "3717",
        "pflFighterId": null
      }
    },
    "5": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:49",
          "controlTime": "01:01",
          "distanceTime": "03:10",
          "groundControlTime": "01:01",
          "groundTime": "01:01",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:12",
          "miscGroundControlTime": "00:49",
          "mountControlTime": "00:00",
          "neutralTime": "03:25",
          "sideControlTime": "00:00",
          "standingTime": "03:59"
        },
        "fighterId": 4147,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "bodyTotalStrikes": {
            "attempts": 4,
            "landed": 3
          },
          "clinchBodyStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 2,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 1,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 3,
            "landed": 0
          },
          "clinchTotalStrikes": {
            "attempts": 3,
            "landed": 0
          },
          "distanceBodyKicks": {
            "attempts": 2,
            "landed": 2
          },
          "distanceBodyStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceHeadStrikes": {
            "attempts": 25,
            "landed": 8
          },
          "distanceLegKicks": {
            "attempts": 0,
            "landed": 0
          },
          "distanceLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "distanceStrikes": {
            "attempts": 27,
            "landed": 10
          },
          "groundBodyStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "groundHeadStrikes": {
            "attempts": 15,
            "landed": 13
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 16,
            "landed": 14
          },
          "groundTotalStrikes": {
            "attempts": 17,
            "landed": 15
          },
          "headSignificantStrikes": {
            "attempts": 42,
            "landed": 21
          },
          "headTotalStrikes": {
            "attempts": 43,
            "landed": 22
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "legsTotalStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "significantStrikes": {
            "attempts": 46,
            "landed": 24
          },
          "totalStrikes": {
            "attempts": 47,
            "landed": 25
          }
        },
        "ufcFighterId": "4075",
        "pflFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:49",
          "controlTime": "00:34",
          "distanceTime": "03:10",
          "groundControlTime": "00:00",
          "groundTime": "01:01",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "03:25",
          "sideControlTime": "00:00",
          "standingTime": "03:59"
        },
        "fighterId": 3742,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 6,
            "landed": 0
          }
        },
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "bodyTotalStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchTotalStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceBodyKicks": {
            "attempts": 1,
            "landed": 1
          },
          "distanceBodyStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "distanceHeadStrikes": {
            "attempts": 36,
            "landed": 20
          },
          "distanceLegKicks": {
            "attempts": 5,
            "landed": 4
          },
          "distanceLegStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "distanceStrikes": {
            "attempts": 42,
            "landed": 25
          },
          "groundBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundHeadStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "groundLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "groundSignificantStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "groundTotalStrikes": {
            "attempts": 1,
            "landed": 0
          },
          "headSignificantStrikes": {
            "attempts": 38,
            "landed": 21
          },
          "headTotalStrikes": {
            "attempts": 38,
            "landed": 21
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 5,
            "landed": 4
          },
          "legsTotalStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "significantStrikes": {
            "attempts": 44,
            "landed": 26
          },
          "totalStrikes": {
            "attempts": 45,
            "landed": 27
          }
        },
        "ufcFighterId": "3717",
        "pflFighterId": null
      }
    }
  },
  "seqNum": 763,
  "status": "",
  "timestamp": "2025-04-27T04:34:07.047372Z",
  "weightclass": "Welterweight"
}
```
