GET - Match/Score Status

This API is used to retreive the data related to the list of the Match Status and Score StatusIDs found in the API GET - Timeline. When requesting you will get the related ids and names for the related status including to which sports they are connected to. To request this API you should use the following GET API data:

Endpoint

Method

Input Data

Sample Request Body

Endpoint

Method

Input Data

Sample Request Body

/api/live/v1/statusMatchScore

GET

N/A

/api/live/v1/statusMatchScore

 

Response Attributes

NAME

DESCRIPTION

NAME

DESCRIPTION

timestamp

The date & time of when the message was created

status id

The ID of the status

status name

The name/type of the status

sport id

The ID of the Sport in which the status is included

sport name

The Name of the Sport in which the status is included

 

Response Examples

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <status_match_score timestamp="1701966942002"> <status id="100" name="Ended"> <sports> <sport id="1001" name="Soccer"/> <sport id="1002" name="Basketball"/> <sport id="1005" name="Tennis"/> </sports> </status> <status id="50" name="Penalties"> <sports> <sport id="1001" name="Soccer"/> </sports> </status> <status id="6" name="1st Half"> <sports> <sport id="1001" name="Soccer"/> <sport id="1002" name="Basketball"/> </sports> </status> </match_score_status>

Â