Statistics

The data will include all teams and players within a match and aggregated statistics of sports actions.

The Stats API lets developers list and manage aggregated match statistics packets in a single URL call (which are typically delivered in the live match statistics websocket). These stats are delivered in the API call at the end of the fixture.

Endpoints

Aggregated fixture statistics

GET https://dde-api.data.imgarena.com/soccer/fixtures/{fixtureId}/statistics

Retrieves a list of statistical data for a specific fixture

Path Parameters

Name
Type
Description

fixtureId*

string

unique id of a requested fixture

Headers

Name
Type
Description

Accept*

string

application/vnd.imggaming.dde.api+json;version=1

Authorization*

string

Bearer ACCESS_TOKEN

Content-Type*

string

application/json

{
    Request is missing required HTTP header 'Accept'
}

Response Fields

Name
Type
Description

seqNum

integer

Sequence number.

traceId

uuid

Tracing Id for logs.

version

integer

API version.

finished

boolean

Indicates whether a match has finished.

uuid

Unique ID of a fixture.

timestamp

string

The timestamp when the statistics were created, in RFC 3339 format.

Examples for January 25th, 2020 6:25:34pm Pacific Standard Time:

UTC: 2020-01-26T02:25:34Z.

teamActionAggregates

Aggregated action statistics.

Response JSON
{
    "seqNum": 642,
    "traceId": "bf66d034c8e1dcf5f05e42c8919e6fed",
    "version": 3,
    "finished": true,
    "fixtureId": "dd0cf216-0230-45c1-b990-86155e46b67f",
    "timestamp": "2023-09-28T18:26:14.007916100Z",
    "teamActionAggregates": [...]
}

Polling frequency

We recommend the following frequency for your REST requests to ensure that you have the most up-to-date information at all times - once post match.

Last updated