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

# 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. Please note this is for 'live' stats only. If you want to get a finalised record of the stats (given some post match checks take place), please use the /detailedresults REST API endpoint

## **Endpoint URL**

| Legacy - wss\://dde-streams.data.imgarena.com/media/mma/fight-livestats/feed/{id} (Decommissioning 30th Sept 2026) |
| ------------------------------------------------------------------------------------------------------------------ |
| **NEW** - wss\://dde-streams.data.srarena.io/media/mma/fight-livestats/feed/{id}                                   |

**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      |

## 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   | will be null                                                 |
| pflFighterId   | string   | The PFL fighter ID of the fighter to which these stats refer |

## 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   | will be null                                                 |
| pflFighterId   | string   | The PFL fighter ID of the fighter to which these stats refer |

## 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, Patrick Ocheme vs. Abdul Razac Sankara; 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": 3,
  "currentRoundTime": "05:00",
  "fightCardId": 1656,
  "fightId": 9462,
  "fightStats": {
    "blue": {
      "TIP": {
        "backControlTime": "00:00",
        "clinchTime": "01:59",
        "controlTime": "00:20",
        "distanceTime": "13:01",
        "groundControlTime": "00:00",
        "groundTime": "00:00",
        "guardControlTime": "00:00",
        "halfGuardControlTime": "00:00",
        "miscGroundControlTime": "00:00",
        "mountControlTime": "00:00",
        "neutralTime": "13:36",
        "sideControlTime": "00:00",
        "standingTime": "15:00"
      },
      "fighterId": 4898,
      "grappling": {
        "reversals": {
          "attempts": 0,
          "landed": 0
        },
        "standups": {
          "attempts": 0,
          "landed": 0
        },
        "submissions": {
          "attempts": 0,
          "landed": 0
        },
        "takedowns": {
          "attempts": 0,
          "landed": 0
        }
      },
      "pflFighterId": "1050",
      "strikes": {
        "bodySignificantStrikes": {
          "attempts": 39,
          "landed": 29
        },
        "bodyTotalStrikes": {
          "attempts": 39,
          "landed": 29
        },
        "clinchBodyStrikes": {
          "attempts": 2,
          "landed": 2
        },
        "clinchHeadStrikes": {
          "attempts": 3,
          "landed": 2
        },
        "clinchLegStrikes": {
          "attempts": 4,
          "landed": 4
        },
        "clinchSignificantKicks": {
          "attempts": 2,
          "landed": 2
        },
        "clinchSignificantStrikes": {
          "attempts": 9,
          "landed": 8
        },
        "clinchTotalStrikes": {
          "attempts": 9,
          "landed": 8
        },
        "distanceBodyKicks": {
          "attempts": 37,
          "landed": 27
        },
        "distanceBodyStrikes": {
          "attempts": 37,
          "landed": 27
        },
        "distanceHeadStrikes": {
          "attempts": 64,
          "landed": 28
        },
        "distanceLegKicks": {
          "attempts": 14,
          "landed": 11
        },
        "distanceLegStrikes": {
          "attempts": 14,
          "landed": 11
        },
        "distanceStrikes": {
          "attempts": 115,
          "landed": 66
        },
        "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": 67,
          "landed": 30
        },
        "headTotalStrikes": {
          "attempts": 67,
          "landed": 30
        },
        "knockDown": {
          "attempts": 0,
          "landed": 1
        },
        "legsSignificantStrikes": {
          "attempts": 18,
          "landed": 15
        },
        "legsTotalStrikes": {
          "attempts": 18,
          "landed": 15
        },
        "significantStrikes": {
          "attempts": 124,
          "landed": 74
        },
        "totalStrikes": {
          "attempts": 124,
          "landed": 74
        }
      },
      "ufcFighterId": null
    },
    "red": {
      "TIP": {
        "backControlTime": "00:00",
        "clinchTime": "01:59",
        "controlTime": "01:04",
        "distanceTime": "13:01",
        "groundControlTime": "00:00",
        "groundTime": "00:00",
        "guardControlTime": "00:00",
        "halfGuardControlTime": "00:00",
        "miscGroundControlTime": "00:00",
        "mountControlTime": "00:00",
        "neutralTime": "13:36",
        "sideControlTime": "00:00",
        "standingTime": "15:00"
      },
      "fighterId": 4897,
      "grappling": {
        "reversals": {
          "attempts": 0,
          "landed": 0
        },
        "standups": {
          "attempts": 0,
          "landed": 0
        },
        "submissions": {
          "attempts": 0,
          "landed": 0
        },
        "takedowns": {
          "attempts": 0,
          "landed": 0
        }
      },
      "pflFighterId": "1006",
      "strikes": {
        "bodySignificantStrikes": {
          "attempts": 31,
          "landed": 21
        },
        "bodyTotalStrikes": {
          "attempts": 33,
          "landed": 23
        },
        "clinchBodyStrikes": {
          "attempts": 8,
          "landed": 7
        },
        "clinchHeadStrikes": {
          "attempts": 3,
          "landed": 2
        },
        "clinchLegStrikes": {
          "attempts": 1,
          "landed": 1
        },
        "clinchSignificantKicks": {
          "attempts": 8,
          "landed": 7
        },
        "clinchSignificantStrikes": {
          "attempts": 12,
          "landed": 10
        },
        "clinchTotalStrikes": {
          "attempts": 13,
          "landed": 11
        },
        "distanceBodyKicks": {
          "attempts": 23,
          "landed": 14
        },
        "distanceBodyStrikes": {
          "attempts": 23,
          "landed": 14
        },
        "distanceHeadStrikes": {
          "attempts": 83,
          "landed": 31
        },
        "distanceLegKicks": {
          "attempts": 45,
          "landed": 33
        },
        "distanceLegStrikes": {
          "attempts": 45,
          "landed": 33
        },
        "distanceStrikes": {
          "attempts": 151,
          "landed": 78
        },
        "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": 86,
          "landed": 33
        },
        "headTotalStrikes": {
          "attempts": 86,
          "landed": 33
        },
        "knockDown": {
          "attempts": 0,
          "landed": 0
        },
        "legsSignificantStrikes": {
          "attempts": 46,
          "landed": 34
        },
        "legsTotalStrikes": {
          "attempts": 46,
          "landed": 34
        },
        "significantStrikes": {
          "attempts": 163,
          "landed": 88
        },
        "totalStrikes": {
          "attempts": 165,
          "landed": 90
        }
      },
      "ufcFighterId": null
    }
  },
  "fighters": {
    "blue": {
      "fighterId": 4898,
      "name": "Abdul Razac Sankara",
      "pflFighterId": "1050",
      "ufcFighterId": null
    },
    "red": {
      "fighterId": 4897,
      "name": "Patrick Ocheme",
      "pflFighterId": "1006",
      "ufcFighterId": null
    }
  },
  "maxRounds": 3,
  "referee": "",
  "roundStats": {
    "1": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:15",
          "controlTime": "00:01",
          "distanceTime": "04:45",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:55",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4898,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1050",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "bodyTotalStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "clinchTotalStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceBodyKicks": {
            "attempts": 10,
            "landed": 7
          },
          "distanceBodyStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "distanceHeadStrikes": {
            "attempts": 11,
            "landed": 6
          },
          "distanceLegKicks": {
            "attempts": 8,
            "landed": 5
          },
          "distanceLegStrikes": {
            "attempts": 8,
            "landed": 5
          },
          "distanceStrikes": {
            "attempts": 29,
            "landed": 18
          },
          "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": 11,
            "landed": 6
          },
          "headTotalStrikes": {
            "attempts": 11,
            "landed": 6
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "legsTotalStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "significantStrikes": {
            "attempts": 31,
            "landed": 20
          },
          "totalStrikes": {
            "attempts": 31,
            "landed": 20
          }
        },
        "ufcFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:15",
          "controlTime": "00:04",
          "distanceTime": "04:45",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:55",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4897,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1006",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 11,
            "landed": 8
          },
          "bodyTotalStrikes": {
            "attempts": 11,
            "landed": 8
          },
          "clinchBodyStrikes": {
            "attempts": 4,
            "landed": 4
          },
          "clinchHeadStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "clinchLegStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchSignificantKicks": {
            "attempts": 4,
            "landed": 4
          },
          "clinchSignificantStrikes": {
            "attempts": 7,
            "landed": 6
          },
          "clinchTotalStrikes": {
            "attempts": 7,
            "landed": 6
          },
          "distanceBodyKicks": {
            "attempts": 7,
            "landed": 4
          },
          "distanceBodyStrikes": {
            "attempts": 7,
            "landed": 4
          },
          "distanceHeadStrikes": {
            "attempts": 24,
            "landed": 11
          },
          "distanceLegKicks": {
            "attempts": 28,
            "landed": 20
          },
          "distanceLegStrikes": {
            "attempts": 28,
            "landed": 20
          },
          "distanceStrikes": {
            "attempts": 59,
            "landed": 35
          },
          "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": 26,
            "landed": 12
          },
          "headTotalStrikes": {
            "attempts": 26,
            "landed": 12
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 29,
            "landed": 21
          },
          "legsTotalStrikes": {
            "attempts": 29,
            "landed": 21
          },
          "significantStrikes": {
            "attempts": 66,
            "landed": 41
          },
          "totalStrikes": {
            "attempts": 66,
            "landed": 41
          }
        },
        "ufcFighterId": null
      }
    },
    "2": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:26",
          "controlTime": "00:12",
          "distanceTime": "04:34",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:48",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4898,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1050",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 9,
            "landed": 7
          },
          "bodyTotalStrikes": {
            "attempts": 9,
            "landed": 7
          },
          "clinchBodyStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchSignificantKicks": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchTotalStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "distanceBodyKicks": {
            "attempts": 9,
            "landed": 7
          },
          "distanceBodyStrikes": {
            "attempts": 9,
            "landed": 7
          },
          "distanceHeadStrikes": {
            "attempts": 24,
            "landed": 8
          },
          "distanceLegKicks": {
            "attempts": 4,
            "landed": 4
          },
          "distanceLegStrikes": {
            "attempts": 4,
            "landed": 4
          },
          "distanceStrikes": {
            "attempts": 37,
            "landed": 19
          },
          "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": 24,
            "landed": 8
          },
          "headTotalStrikes": {
            "attempts": 24,
            "landed": 8
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 5,
            "landed": 5
          },
          "legsTotalStrikes": {
            "attempts": 5,
            "landed": 5
          },
          "significantStrikes": {
            "attempts": 38,
            "landed": 20
          },
          "totalStrikes": {
            "attempts": 38,
            "landed": 20
          }
        },
        "ufcFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "00:26",
          "controlTime": "00:00",
          "distanceTime": "04:34",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "04:48",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4897,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1006",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 10,
            "landed": 7
          },
          "bodyTotalStrikes": {
            "attempts": 12,
            "landed": 9
          },
          "clinchBodyStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "clinchHeadStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 2,
            "landed": 2
          },
          "clinchSignificantStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "clinchTotalStrikes": {
            "attempts": 3,
            "landed": 3
          },
          "distanceBodyKicks": {
            "attempts": 8,
            "landed": 5
          },
          "distanceBodyStrikes": {
            "attempts": 8,
            "landed": 5
          },
          "distanceHeadStrikes": {
            "attempts": 33,
            "landed": 15
          },
          "distanceLegKicks": {
            "attempts": 15,
            "landed": 11
          },
          "distanceLegStrikes": {
            "attempts": 15,
            "landed": 11
          },
          "distanceStrikes": {
            "attempts": 56,
            "landed": 31
          },
          "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": 33,
            "landed": 15
          },
          "headTotalStrikes": {
            "attempts": 33,
            "landed": 15
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 15,
            "landed": 11
          },
          "legsTotalStrikes": {
            "attempts": 15,
            "landed": 11
          },
          "significantStrikes": {
            "attempts": 58,
            "landed": 33
          },
          "totalStrikes": {
            "attempts": 60,
            "landed": 35
          }
        },
        "ufcFighterId": null
      }
    },
    "3": {
      "blue": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "01:18",
          "controlTime": "00:07",
          "distanceTime": "03:42",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "03:53",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4898,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1050",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 20,
            "landed": 15
          },
          "bodyTotalStrikes": {
            "attempts": 20,
            "landed": 15
          },
          "clinchBodyStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "clinchHeadStrikes": {
            "attempts": 3,
            "landed": 2
          },
          "clinchLegStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchSignificantKicks": {
            "attempts": 2,
            "landed": 2
          },
          "clinchSignificantStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "clinchTotalStrikes": {
            "attempts": 6,
            "landed": 5
          },
          "distanceBodyKicks": {
            "attempts": 18,
            "landed": 13
          },
          "distanceBodyStrikes": {
            "attempts": 18,
            "landed": 13
          },
          "distanceHeadStrikes": {
            "attempts": 29,
            "landed": 14
          },
          "distanceLegKicks": {
            "attempts": 2,
            "landed": 2
          },
          "distanceLegStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceStrikes": {
            "attempts": 49,
            "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": 32,
            "landed": 16
          },
          "headTotalStrikes": {
            "attempts": 32,
            "landed": 16
          },
          "knockDown": {
            "attempts": 0,
            "landed": 1
          },
          "legsSignificantStrikes": {
            "attempts": 3,
            "landed": 3
          },
          "legsTotalStrikes": {
            "attempts": 3,
            "landed": 3
          },
          "significantStrikes": {
            "attempts": 55,
            "landed": 34
          },
          "totalStrikes": {
            "attempts": 55,
            "landed": 34
          }
        },
        "ufcFighterId": null
      },
      "red": {
        "TIP": {
          "backControlTime": "00:00",
          "clinchTime": "01:18",
          "controlTime": "01:00",
          "distanceTime": "03:42",
          "groundControlTime": "00:00",
          "groundTime": "00:00",
          "guardControlTime": "00:00",
          "halfGuardControlTime": "00:00",
          "miscGroundControlTime": "00:00",
          "mountControlTime": "00:00",
          "neutralTime": "03:53",
          "sideControlTime": "00:00",
          "standingTime": "05:00"
        },
        "fighterId": 4897,
        "grappling": {
          "reversals": {
            "attempts": 0,
            "landed": 0
          },
          "standups": {
            "attempts": 0,
            "landed": 0
          },
          "submissions": {
            "attempts": 0,
            "landed": 0
          },
          "takedowns": {
            "attempts": 0,
            "landed": 0
          }
        },
        "pflFighterId": "1006",
        "strikes": {
          "bodySignificantStrikes": {
            "attempts": 10,
            "landed": 6
          },
          "bodyTotalStrikes": {
            "attempts": 10,
            "landed": 6
          },
          "clinchBodyStrikes": {
            "attempts": 2,
            "landed": 1
          },
          "clinchHeadStrikes": {
            "attempts": 1,
            "landed": 1
          },
          "clinchLegStrikes": {
            "attempts": 0,
            "landed": 0
          },
          "clinchSignificantKicks": {
            "attempts": 2,
            "landed": 1
          },
          "clinchSignificantStrikes": {
            "attempts": 3,
            "landed": 2
          },
          "clinchTotalStrikes": {
            "attempts": 3,
            "landed": 2
          },
          "distanceBodyKicks": {
            "attempts": 8,
            "landed": 5
          },
          "distanceBodyStrikes": {
            "attempts": 8,
            "landed": 5
          },
          "distanceHeadStrikes": {
            "attempts": 26,
            "landed": 5
          },
          "distanceLegKicks": {
            "attempts": 2,
            "landed": 2
          },
          "distanceLegStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "distanceStrikes": {
            "attempts": 36,
            "landed": 12
          },
          "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": 27,
            "landed": 6
          },
          "headTotalStrikes": {
            "attempts": 27,
            "landed": 6
          },
          "knockDown": {
            "attempts": 0,
            "landed": 0
          },
          "legsSignificantStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "legsTotalStrikes": {
            "attempts": 2,
            "landed": 2
          },
          "significantStrikes": {
            "attempts": 39,
            "landed": 14
          },
          "totalStrikes": {
            "attempts": 39,
            "landed": 14
          }
        },
        "ufcFighterId": null
      }
    }
  },
  "seqNum": 306,
  "status": "",
  "timestamp": "2025-10-18T20:09:30Z",
  "weightclass": "Featherweight"
}
```


---

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

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

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

```
GET https://docs.sportradar.com/pfl-media/stream-endpoints-websocket/fight-stats.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

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