Match Live Summary
Return summary data for a match currently in progress on the streaming API. This call will only return data when the match is in progress - not post match.
Rate limited to 2 requests every minute - returns HTTP 429 Too Many Requests if called more often.Authorizations
OAuth2clientCredentialsRequiredToken URL:
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.
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 · uuidRequiredExample:
The unique identifier of the fixture
009e9276-5c80-11e8-9c2d-fa7ae01bbebcorganizationIdstring · min: 5 · max: 5RequiredExample:
The unique identifier of the organization
b1a23Query parameters
limitinteger · int32 · min: 1 · max: 1000OptionalDefault:
The maximum number of records to return. See Pagination for more information.
10Example: 10offsetinteger · int32OptionalExample:
The offset of the records. See Pagination for more information.
10Responses
200
Successful operation
application/json
default
Error
application/json
get
/volleyball/o/{organizationId}/fixtures/{fixtureId}/summary/liveGET /v1/volleyball/o/{organizationId}/fixtures/{fixtureId}/summary/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": [
{
"organizationId": "b1a23",
"fixtureId": "009e9276-5c80-11e8-9c2d-fa7ae01bbebc",
"entities": {},
"clock": {},
"status": {}
}
]
}Last updated
Was this helpful?