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.

Retrieves ratings for the specified events.

get
Authorizations
HTTPRequired

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Query parameters
eventIDinteger · int64[]Optional

EventIds, for which ratings are required.

Responses
200

Returns Rating information about the requested EventIds.

get
/api/Ratings/EventRatings
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.

Retrieves ratings for the specified leagues.

get
Authorizations
HTTPRequired

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Query parameters
leagueIdinteger · int64[]Optional

LeagueIds, for which ratings are required.

Responses
200

Returns Rating information about the requested LeagueIds.

get
/api/Ratings/LeagueRatings
GET /api/Ratings/LeagueRatings HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "id": 1,
    "prematchRatingName": "text",
    "liveRatingName": "text",
    "liveDelay": 1
  }
]

Last updated