End of Fight

Fight Over Object

Field Name

Type

Description

timestamp

time

the time at which the fight started

eventElementType

string

The event, in this case, always “FightOver”

seqNum

integer

the sequence number of the event

Stats Object

This will show stats for the overall fight, and broken down per round per corner per fighter.

Field Name

Type

Description

takedownAttempt

integer

The number of takedown attempts for that fighter

takedownLanded

integer

The number of takedowns landed by that fighter

submissionAttempt

integer

The number of submission attempts for that fighter

reversal

integer

The number of reversals by that fighter

knockdown

integer

The number of knockdowns by that fighter

Sample Response

{
  "eventElementType": "FightOver",
  "seqNum": 19,
  "stats": {
    "fight": {
      "blue": {
        "knockdown": 2,
        "reversal": 0,
        "submissionAttempt": 0,
        "takedownAttempt": 1,
        "takedownLanded": 1
      },
      "red": {
        "knockdown": 0,
        "reversal": 0,
        "submissionAttempt": 0,
        "takedownAttempt": 7,
        "takedownLanded": 0
      }
    },
    "round": {
      "1": {
        "blue": {
          "knockdown": 2,
          "reversal": 0,
          "submissionAttempt": 0,
          "takedownAttempt": 1,
          "takedownLanded": 1
        },
        "red": {
          "knockdown": 0,
          "reversal": 0,
          "submissionAttempt": 0,
          "takedownAttempt": 7,
          "takedownLanded": 0
        }
      }
    }
  },
  "timestamp": "2024-11-10T02:21:36.148170Z"
}

Provisional Result

Result Object

Field Name

Type

Description

timestamp

time

the time at which the fight started

eventElementType

string

The event, in this case, always “ProvisionalResult”

seqNum

integer

the sequence number of the event

result

object

Winner and result type, if applicable.

Sample Response

{
	"timestamp": "2024-11-10T07:51:44.642Z",
	"eventElementType": "ProvisionalResult",
	"result": {
		"winner": "blue",
		"type": "Decision"     
	}   "seqNum": 126
}

Last updated

Was this helpful?