Ratings API
Provides ratings information for events and leagues
Ratings API can be used to get rating of a particular league or event.
Event Ratings Endpoint
Can be used to get ratings of a list of events.
The endpoint is rate-limited.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
EventIds, for which ratings are required.
Returns Rating information about the requested EventIds.
Request arguments are not valid.
Unauthorized
Forbidden
Too many requests
Unexpected error occurred.
GET /api/Ratings/EventRatings HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"prematchRatingName": "text",
"liveRatingName": "text",
"liveDelay": 1
}
]League Ratings Endpoint
Can be used to get ratings of a list of leagues.
The endpoint is rate-limited to 10 requests per second.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
LeagueIds, for which ratings are required.
Returns Rating information about the requested LeagueIds.
Request arguments are not valid.
Unauthorized
Forbidden
Too many requests
Unexpected error occurred.
GET /api/Ratings/LeagueRatings HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"prematchRatingName": "text",
"liveRatingName": "text",
"liveDelay": 1
}
]Last updated