Seasons

List all seasons and competitions.

The Seasons API lets developers list and manage competition seasons. This is a gateway into the Fixtures API.

Applications don't need any input to list all seasons, however information can be filtered by start date and end date. The result is useful for obtaining competiton Ids, season Ids, and stage Ids.

Endpoints

List seasons

GET https://dde-api.data.imgarena.com/{sport}/seasons

Retrieves a list of seasons for a specific sport.

Path Parameters

Name
Type
Description

sport*

string

A unique name for the requested sport, i.e. basketball.

Query Parameters

Name
Type
Description

dateFrom

date

dateTo

date

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

The requested list of seasons.

Season attributes

  • id (uuid) - The FastPath-assigned ID of the season

  • name (string) - Name of the season

  • startDateUTC (datetime) - Start date of the season

  • endDateUTC (datetime) - End date of the season

  • competition (Competition) - Competition information within the season

  • stages (Stages) - Round of match within a competition

Competition

  • id (uuid) - The FastPath-assigned ID of the competition within the season

  • name (string) - Name of the competition. Example: Israel League Cup

  • category (Category) - Competition category information

  • location (Location) - Venue information of the competition

Category

  • id (integer) - The FastPath-assigned ID of the competiton category

  • name (string) - Name of the competition category. Example: Men, Women

Tour

  • id (integer) -

  • name (string) -

Location

  • name (string) - Name of the venue. Example: Israel

  • country (List) - List of countries where the competition is played out

  • continent (object) - List of continents where the competition is played out

Continent

  • name (string) - Name of the continent where the seasion is located. Example: Asia

Stages

  • id (uuid) -

  • name (string) -

  • startDateUTC (datetime) -

  • endDateUTC (datetime) -

  • rounds (object) -

  • groups (object) -

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 per 12 hours

Last updated