Fixtures
List all fixtures.
The Fixtures API lets developers list and manage season fixtures. This is a gateway into the Actions API.
Applications don't need any input to list all fixtures, 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 fixtures
GET
https://dde-api.data.imgarena.com/{sport}/fixtures
Retrieves a list of seasons for a specific sport.
Path Parameters
sport*
String
A unique name for the requested sport. Example: basketball
, soccer
, v2/volleyball
, snooker
String
Query Parameters
subscribed
Boolean
Lists the fixtures for which a user is licensed. Example: true
, false
live
Boolean
Allows users to determine which fixtures are live and available based on a user's licence. Example: true
, false
status
String
Allows clients to filter based on the status of a match or group of matches. Example: scheduled
, live
, completed
, postponed
dateFrom
Date
DAllows clients to filter between specific dates. Example: 2023-01-01
dateTo
Date
Allows clients to filter between specific dates. Example: 2023-01-01
type
String
Allows clients to filter based on the type of a match or group of matches. Example: official
, simulation
, training
coverageLevel
String
Headers
Accept*
String
application/vnd.imggaming.dde.api+json;version=1
Authorization*
String
Bearer ACCESS_TOKEN
Content-Type*
String
application/json
List season fixtures
GET
https://dde-api.data.imgarena.com/{sport}/seasons/{seasonId}/fixtures
Path Parameters
sport*
String
A unique name for the requested sport. Example: basketball
, soccer
, v2/volleyball
, snooker
seasonId*
UUID
unique id of a requested season
Query Parameters
subscribed
Boolean
Lists the fixtures for which a user is licensed. Example: true
, false
live
Boolean
Allows users to determine which fixtures are live and available based on a user's licence. Example: true
, false
status
String
Allows clients to filter based on the status of a match or group of matches. Example: scheduled
, live
, completed
, postponed
dateFrom
Date
Allows clients to filter between specific dates. Example: 2023-01-01
dateTo
Date
Allows clients to filter between specific dates. Example: 2023-01-01
type
String
Allows clients to filter based on the type of a match or group of matches. Example: official
, simulation
, training
Get fixture
GET
https://dde-api.data.imgarena.com/{sport}/fixtures/{fixtureId}
Path Parameters
sport*
String
A unique name for the requested sport. Example: basketball
, soccer
, v2/volleyball
, snooker
fixtureId*
UUID
Unique id of a requested fixture.
Response fields
The requested list of seasons
Fixture attributes
id (
uuid
) - The FastPath-assigned ID of the fixturename (
string
) - Descriptive name of the fixturestartDateUTC (
datetime
) - Start date of the fixturestatus (
string
) - Competition information within the seasontype (
string
) - Round of match within a competitioncoverageLevel (
string
) - Round of match within a competitionteams (
Teams
) - Round of match within a competitionstage (
Stage
) - Round of match within a competitionvenue (
Venue
) - Round of match within a competition
Teams
id (
uuid
) - The FastPath-assigned ID of the competition within the seasonname (
string
) - Name of the competition. Example:Israel League Cup
club (
Club
) - Competition category informationcategory (
Category
) - Competition category informationhomeTeam (
boolean
) - Venue information of the competition
Club
name
Stage
id (
uuid
) -name (
string
) -season (
Season
) -startDateUTC (
datetime
) -endDateUTC (
datetime
) -rounds (
object
) -groups (
object
) -
Category
id (
integer
) - The FastPath-assigned ID of the competiton categoryname (
string
) - Name of the competition category. Example:Men
,Women
Venue
id (
string
) - The FastPath-assigned id of the venue. Example:665e9df6-4587-41b4-9a75-085e56e8579b
name (
string
) - Descriptive name of the venue. Example:Drive in Arena
location (
Location
) - Geographic location of the venue. Usually it is the city, country and continent. Example:Tel Aviv
,Israel
,Asia
Location
name (
string
) - Name of the venue. Example:Tel Aviv
country (
Country
) - List of countries where the fixture is played out. Example:Israel
continent (
Continent
) - List of continents where the fixture is played out. Example:Asia
Country
name (
string
) - Name of the country where the fixture plays out
Continent
name (
string
) - Name of the continent where the fixture plays out
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