Team Match Statistics

Teams can have statistics associated with their participation in a match.

There are two types of statistics collected:

  • Total

  • By Period

The period statistics are the statistics for just that one period, whereas the total statistics contain an aggregated view of all periods. Each type is separate (the 'total' is NOT created automatically by summing the period statistics) and as such needs to be added/updated/deleted independently.

Team total statistics

get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}

Return a list of team statistics for a match. Statistics are the totals (all periods added together) for the match.

Required scopes
This endpoint requires the following scopes:
  • : Read any data from the organization down
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 1000Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}
GET /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId} HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Delete team total statistics

delete
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}

Delete the total match statistics for for a given team in the ~fixture.

Required scopes
This endpoint requires the following scopes:
  • : Write/Update any data from below the organization
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
entityIdstring · uuidOptional

The unique identifier of the entity

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
forceDeletebooleanOptional

Force a delete command to run and delete child records as well if there are existing records depending on the record.

Example: true
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
Responses
200

Successful operation

application/json
delete
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}
DELETE /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId} HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Team total statistics for matches in a season

get
/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures

Return a list of team statistics for matches in a season. Statistics are the totals (all periods added together) for the match.

Required scopes
This endpoint requires the following scopes:
  • : Read any data from the organization down
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
seasonIdstring · uuidRequired

The unique identifier of the season

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 300Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures
GET /v1/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Team total statistics - live

get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/live

Return a list of live team statistics for a match. Statistics are the totals (all periods added together) for the match. This call will return records of matches still in-progress if available. If the match is complete this call operates the same as the non 'live' route.

Rate limited to 2 requests every minute - returns HTTP 429 Too Many Requests if called more often.
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Available scopes:
  • : Authenticate based on a specific OrganizationId
  • : Read data over multiple organizations using and *orggroup* code
  • : Write/Update any data from below the organization
  • : Read any data from the organization down
  • : Perform administration API calls
  • : Ability to manage organizations
  • : Perform system configuration API calls
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 1000Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/live
GET /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/live HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Team period statistics

get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods

Return a list of team statistics for a match broken down by period

Required scopes
This endpoint requires the following scopes:
  • : Read any data from the organization down
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 1000Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
periodIdinteger · enumOptional

The identifier for the period

  • None Total match
  • 1 Period 1
  • 2 Period 2
  • 3 Period 3
  • 4 Period 4
  • 10 Extra time 1
  • 11 Extra time 2
  • 12 Shoot Out
  • 13 Extra time 4
Possible values:
sectionstring · max: 100Optional

The section of the period (sub-period)

updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods
GET /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "periodId": 0,
      "section": "text",
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Delete team period statistics

delete
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods

Delete statistics for a match for a given team by period.

Required scopes
This endpoint requires the following scopes:
  • : Write/Update any data from below the organization
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
entityIdstring · uuidOptional

The unique identifier of the entity

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
forceDeletebooleanOptional

Force a delete command to run and delete child records as well if there are existing records depending on the record.

Example: true
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
periodIdinteger · enumOptional

The identifier for the period

  • None Total match
  • 1 Period 1
  • 2 Period 2
  • 3 Period 3
  • 4 Period 4
  • 10 Extra time 1
  • 11 Extra time 2
  • 12 Shoot Out
  • 13 Extra time 4
Possible values:
sectionstring · max: 100Optional

The section of the period (sub-period)

Responses
200

Successful operation

application/json
delete
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods
DELETE /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "periodId": 0,
      "section": "text",
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Team period statistics for matches in a season

get
/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures/periods

Return a list of team period statistics for matches in a season.

Required scopes
This endpoint requires the following scopes:
  • : Read any data from the organization down
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
seasonIdstring · uuidRequired

The unique identifier of the season

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 300Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures/periods
GET /v1/hockey/o/{organizationId}/seasons/{seasonId}/statistics/for/entity/in/fixtures/periods HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "periodId": 0,
      "section": "text",
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Team period statistics - live

get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods/live

Return a list of team statistics for a match broken down by period. This call will return records of matches still in-progress if available. If the match is complete this call operates the same as the non 'live' route.

Rate limited to 2 requests every minute - returns HTTP 429 Too Many Requests if called more often.
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Available scopes:
  • : Authenticate based on a specific OrganizationId
  • : Read data over multiple organizations using and *orggroup* code
  • : Write/Update any data from below the organization
  • : Read any data from the organization down
  • : Perform administration API calls
  • : Ability to manage organizations
  • : Perform system configuration API calls
Path parameters
fixtureIdstring · uuidRequired

The unique identifier of the fixture

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
addedstring · date-timeOptional

Record was added after this date/time. In UTC.

Example: 2018-08-16T02:10:48
entityIdstring · uuidOptional

The unique identifiers of the entity (comma-delimited).

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc,de83c6a8-3b29-11eb-bdb7-0242ac130005
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
limitinteger · int32 · min: 1 · max: 1000Optional

The maximum number of records to return. See Pagination for more information.

Default: 10Example: 10
offsetinteger · int32Optional

The offset of the records. See Pagination for more information.

Example: 10
periodIdinteger · enumOptional

The identifier for the period

  • None Total match
  • 1 Period 1
  • 2 Period 2
  • 3 Period 3
  • 4 Period 4
  • 10 Extra time 1
  • 11 Extra time 2
  • 12 Shoot Out
  • 13 Extra time 4
Possible values:
sectionstring · max: 100Optional

The section of the period (sub-period)

updatedstring · date-timeOptional

Record was modified after this date/time. In UTC.

Example: 2018-08-16T02:11:48
Responses
200

Successful operation

application/json
get
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods/live
GET /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/{fixtureId}/periods/live HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "periodId": 0,
      "section": "text",
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Create/Update team total statistics

post
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures

Depending on the data, Add or update a statistic record for ENTITYPREIX team in the match.

Required scopes
This endpoint requires the following scopes:
  • : Write/Update any data from below the organization
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
Body
entityIdstring · uuidRequired

The unique identifier of the team

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
fixtureIdstring · uuidRequired

The unique identifier of the match

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
Responses
200

Successful operation

application/json
post
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures
POST /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1188

{
  "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
  "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
  "statistics": {
    "assists": 1,
    "badPasses": 1,
    "blocks": 1,
    "challengesEarned": 1,
    "challengesScored": 1,
    "circlePenetrations": 1,
    "fieldGoalConversionsMissed": 1,
    "fieldGoalConversionsScored": 1,
    "fieldGoalsScored": 1,
    "goalsConceded": 1,
    "goalsConcededShootOut": 1,
    "goalsScored": 1,
    "goalsShootOut": 1,
    "greenCards": 1,
    "interceptions": 1,
    "longCornersEarned": 1,
    "minutes": "text",
    "ownGoals": 1,
    "passAccuracy": 1,
    "passes": 1,
    "penaltyCornersEarned": 1,
    "penaltyCornersEfficency": 1,
    "penaltyCornersScored": 1,
    "penaltyStrokesEarned": 1,
    "penaltyStrokesMissed": 1,
    "penaltyStrokesSaved": 1,
    "penaltyStrokesScored": 1,
    "penaltyStrokesShootoutEarned": 1,
    "penaltyStrokesShootoutMissed": 1,
    "penaltyStrokesShootoutScored": 1,
    "goalKeeperPenaltyStrokesAgainst": 1,
    "goalKeeperPenaltyStrokesGoalsAgainst": 1,
    "goalKeeperPenaltyStrokesSaved": 1,
    "goalKeeperPenaltyStrokesSaveAccuracy": 1,
    "possession": 1,
    "redCards": 1,
    "saves": 1,
    "savesShootOut": 1,
    "shotAccuracy": 1,
    "shots": 1,
    "shotsMissed": 1,
    "shotsMissedShootOut": 1,
    "shotsOnTarget": 1,
    "shootOutAttempts": "text",
    "tackles": 1,
    "timeInPossession": "text",
    "videoReviewRejected": 1,
    "videoReviewUpheld": 1,
    "yellowCards": 1
  }
}
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Create/Update team period statistics

post
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/periods

Depending on the data, Add or update a statistic record for ENTITYPREIX team in a period of the match.

Required scopes
This endpoint requires the following scopes:
  • : Write/Update any data from below the organization
Authorizations
OAuth2clientCredentialsRequired

You can create a JSON Web Token (JWT) using the token API call. Each token is given a set of scopes/permissions. Each endpoint has a scope/permission that it requires to run. If your token does not possess the correct scope then you will be unable to make the API call.

Token URL:
Path parameters
organizationIdstring · min: 5 · max: 5Required

The unique identifier of the organization

Example: b1a23
Query parameters
externalstringOptional

A comma separated list of fields that will instead be interpreted as an externalId. See External Ids for more information.

Example: entityId,personId
fieldsstringOptional

A comma separated list of fields to display. The response will only display these fields. See Partial Response section for more information.

Example: dob,firstName,organization(id),organizations[name], teams[name,details/metrics/*,tags(id)]
hideNullbooleanOptional

Don't display data fields with null values or empty structures

Example: true
includestringOptional

A comma separated list of resource types to include. See Resource Inclusion for more information.

Example: organizations,fixtures,entities
Body
entityIdstring · uuidRequired

The unique identifier of the team

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
fixtureIdstring · uuidRequired

The unique identifier of the match

Example: 009e9276-5c80-11e8-9c2d-fa7ae01bbebc
periodIdinteger · enumOptional

The identifier for the period

  • None Total match
  • 1 Period 1
  • 2 Period 2
  • 3 Period 3
  • 4 Period 4
  • 10 Extra time 1
  • 11 Extra time 2
  • 12 Shoot Out
  • 13 Extra time 4
Possible values:
sectionstring · max: 100Optional

The section of the period (sub-period)

Responses
200

Successful operation

application/json
post
/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/periods
POST /v1/hockey/o/{organizationId}/statistics/for/entity/in/fixtures/periods HTTP/1.1
Host: api.dc.connect.sportradar.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1218

{
  "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
  "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
  "statistics": {
    "assists": 1,
    "badPasses": 1,
    "blocks": 1,
    "challengesEarned": 1,
    "challengesScored": 1,
    "circlePenetrations": 1,
    "fieldGoalConversionsMissed": 1,
    "fieldGoalConversionsScored": 1,
    "fieldGoalsScored": 1,
    "goalsConceded": 1,
    "goalsConcededShootOut": 1,
    "goalsScored": 1,
    "goalsShootOut": 1,
    "greenCards": 1,
    "interceptions": 1,
    "longCornersEarned": 1,
    "minutes": "text",
    "ownGoals": 1,
    "passAccuracy": 1,
    "passes": 1,
    "penaltyCornersEarned": 1,
    "penaltyCornersEfficency": 1,
    "penaltyCornersScored": 1,
    "penaltyStrokesEarned": 1,
    "penaltyStrokesMissed": 1,
    "penaltyStrokesSaved": 1,
    "penaltyStrokesScored": 1,
    "penaltyStrokesShootoutEarned": 1,
    "penaltyStrokesShootoutMissed": 1,
    "penaltyStrokesShootoutScored": 1,
    "goalKeeperPenaltyStrokesAgainst": 1,
    "goalKeeperPenaltyStrokesGoalsAgainst": 1,
    "goalKeeperPenaltyStrokesSaved": 1,
    "goalKeeperPenaltyStrokesSaveAccuracy": 1,
    "possession": 1,
    "redCards": 1,
    "saves": 1,
    "savesShootOut": 1,
    "shotAccuracy": 1,
    "shots": 1,
    "shotsMissed": 1,
    "shotsMissedShootOut": 1,
    "shotsOnTarget": 1,
    "shootOutAttempts": "text",
    "tackles": 1,
    "timeInPossession": "text",
    "videoReviewRejected": 1,
    "videoReviewUpheld": 1,
    "yellowCards": 1
  },
  "periodId": 0,
  "section": "text"
}
{
  "meta": {
    "version": 1,
    "codeVersion": "d6cd1e2bd19e03a81132a23b2025920577f84e37",
    "code": 200,
    "time": "2018-06-05 23:43:41.227584+00:00",
    "fromCache": false,
    "count": 7,
    "limit": 10,
    "offset": 10,
    "generationTime": 0.011604
  },
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "previous": "https://example.com"
  },
  "included": {
    "resources": {
      "ANY_ADDITIONAL_PROPERTY": "league"
    }
  },
  "data": [
    {
      "entityId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "entity": {
        "resourceType": "entities",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
      "fixture": {
        "resourceType": "fixtures",
        "id": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc"
      },
      "organizationId": "9",
      "organization": {
        "resourceType": "organizations",
        "id": "9"
      },
      "statistics": {
        "assists": 1,
        "badPasses": 1,
        "blocks": 1,
        "challengesEarned": 1,
        "challengesScored": 1,
        "circlePenetrations": 1,
        "fieldGoalConversionsMissed": 1,
        "fieldGoalConversionsScored": 1,
        "fieldGoalsScored": 1,
        "goalsConceded": 1,
        "goalsConcededShootOut": 1,
        "goalsScored": 1,
        "goalsShootOut": 1,
        "greenCards": 1,
        "interceptions": 1,
        "longCornersEarned": 1,
        "minutes": "text",
        "ownGoals": 1,
        "passAccuracy": 1,
        "passes": 1,
        "penaltyCornersEarned": 1,
        "penaltyCornersEfficency": 1,
        "penaltyCornersScored": 1,
        "penaltyStrokesEarned": 1,
        "penaltyStrokesMissed": 1,
        "penaltyStrokesSaved": 1,
        "penaltyStrokesScored": 1,
        "penaltyStrokesShootoutEarned": 1,
        "penaltyStrokesShootoutMissed": 1,
        "penaltyStrokesShootoutScored": 1,
        "goalKeeperPenaltyStrokesAgainst": 1,
        "goalKeeperPenaltyStrokesGoalsAgainst": 1,
        "goalKeeperPenaltyStrokesSaved": 1,
        "goalKeeperPenaltyStrokesSaveAccuracy": 1,
        "possession": 1,
        "redCards": 1,
        "saves": 1,
        "savesShootOut": 1,
        "shotAccuracy": 1,
        "shots": 1,
        "shotsMissed": 1,
        "shotsMissedShootOut": 1,
        "shotsOnTarget": 1,
        "shootOutAttempts": "text",
        "tackles": 1,
        "timeInPossession": "text",
        "videoReviewRejected": 1,
        "videoReviewUpheld": 1,
        "yellowCards": 1
      },
      "periodId": 0,
      "section": "text",
      "updated": "2025-11-19T05:48:41.994Z",
      "added": "2025-11-19T05:48:41.994Z"
    }
  ]
}

Last updated

Was this helpful?