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

Name
Type
Description

sport*

String

A unique name for the requested sport. Example: basketball, soccer, v2/volleyball, snooker

String

Query Parameters

Name
Type
Description

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

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'
}

List season fixtures

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

Path Parameters

Name
Type
Description

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

Name
Type
Description

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

{
        "id": "ffc47dc5-61e1-44e9-add7-6088c415aa42",
        "name": "Hapoel Tel Aviv v Ironi Kiryat Ata",
        "status": "Completed",
        "type": "Official",
        "coverageLevel": "In Venue",
        "startDateUTC": "2022-09-19T17:00:00",
        "teams": [
            {
                "id": "114aa40d-6895-48b9-9bfe-0abecc9d10c9",
                "name": "Hapoel Tel Aviv",
                "club": {
                    "id": "3bf65514-d1b3-4768-8119-cee69b574734",
                    "name": "HAPOEL TEL AVIV"
                },
                "category": {
                    "id": 1,
                    "name": "Men"
                },
                "homeTeam": true
            },
            {
                "id": "d4407cea-1880-4afa-8aa6-9c58b2d583f4",
                "name": "Ironi Kiryat Ata",
                "club": {
                    "id": "da2da316-8876-4939-873b-d4ce5bff3688",
                    "name": "IRONI KIRYAT ATA"
                },
                "category": {
                    "id": 1,
                    "name": "Men"
                },
                "homeTeam": false
            }
        ],
        "stage": {
            "id": "7eb6159c-94bf-45bd-a52d-4143fdbe47d0",
            "name": "Regular round",
            "season": {
                "id": "c7e3e6b7-e24f-4e76-8247-6d4626d17935",
                "name": "Season 2022/2023",
                "startDateUTC": "2022-09-19T12:00:00",
                "endDateUTC": "2023-05-31T12:00:00",
                "competition": {
                    "id": "7d6aeba6-2599-4231-a0f9-fd218f38bced",
                    "name": "Israel League Cup",
                    "category": {
                        "id": 1,
                        "name": "Men"
                    },
                    "tour": {
                        "id": 37,
                        "name": "Israeli Basketball Association (IBBA)"
                    },
                    "location": {
                        "name": "Israel",
                        "country": {},
                        "continent": {
                            "name": "Asia"
                        }
                    }
                }
            },
            "startDateUTC": "2022-11-01T12:00:00",
            "endDateUTC": "2023-05-31T12:00:00"
        },
        "venue": {
            "id": "665e9df6-4587-41b4-9a75-085e56e8579b",
            "name": "Drive in Arena",
            "location": {
                "name": "Tel Aviv",
                "country": {
                    "name": "Israel"
                },
                "continent": {
                    "name": "Asia"
                }
            }
        }
    }

Get fixture

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

Path Parameters

Name
Type
Description

sport*

String

A unique name for the requested sport. Example: basketball, soccer, v2/volleyball, snooker

fixtureId*

UUID

Unique id of a requested fixture.

{
    "id": "ffc47dc5-61e1-44e9-add7-6088c415aa42",
    "name": "Hapoel Tel Aviv v Ironi Kiryat Ata",
    "status": "Completed",
    "type": "Official",
    "coverageLevel": "In Venue",
    "startDateUTC": "2022-09-19T17:00:00",
    "teams": [
        {
            "id": "114aa40d-6895-48b9-9bfe-0abecc9d10c9",
            "name": "Hapoel Tel Aviv",
            "club": {
                "id": "3bf65514-d1b3-4768-8119-cee69b574734",
                "name": "HAPOEL TEL AVIV"
            },
            "category": {
                "id": 1,
                "name": "Men"
            },
            "homeTeam": true
        },
        {
            "id": "d4407cea-1880-4afa-8aa6-9c58b2d583f4",
            "name": "Ironi Kiryat Ata",
            "club": {
                "id": "da2da316-8876-4939-873b-d4ce5bff3688",
                "name": "IRONI KIRYAT ATA"
            },
            "category": {
                "id": 1,
                "name": "Men"
            },
            "homeTeam": false
        }
    ],
    "stage": {
        "id": "7eb6159c-94bf-45bd-a52d-4143fdbe47d0",
        "name": "Regular round",
        "season": {
            "id": "c7e3e6b7-e24f-4e76-8247-6d4626d17935",
            "name": "Season 2022/2023",
            "startDateUTC": "2022-09-19T12:00:00",
            "endDateUTC": "2023-05-31T12:00:00",
            "competition": {
                "id": "7d6aeba6-2599-4231-a0f9-fd218f38bced",
                "name": "Israel League Cup",
                "category": {
                    "id": 1,
                    "name": "Men"
                },
                "tour": {
                    "id": 37,
                    "name": "Israeli Basketball Association (IBBA)"
                },
                "location": {
                    "name": "Israel",
                    "country": {},
                    "continent": {
                        "name": "Asia"
                    }
                }
            }
        },
        "startDateUTC": "2022-11-01T12:00:00",
        "endDateUTC": "2023-05-31T12:00:00"
    },
    "venue": {
        "id": "665e9df6-4587-41b4-9a75-085e56e8579b",
        "name": "Drive in Arena",
        "location": {
            "name": "Tel Aviv",
            "country": {
                "name": "Israel"
            },
            "continent": {
                "name": "Asia"
            }
        }
    }
}

Response fields

The requested list of seasons

Fixture attributes

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

  • name (string) - Descriptive name of the fixture

  • startDateUTC (datetime) - Start date of the fixture

  • status (string) - Competition information within the season

  • type (string) - Round of match within a competition

  • coverageLevel (string) - Round of match within a competition

  • teams (Teams) - Round of match within a competition

  • stage (Stage) - Round of match within a competition

  • venue (Venue) - Round of match within a competition

Teams

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

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

  • club (Club) - Competition category information

  • category (Category) - Competition category information

  • homeTeam (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 category

  • name (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