API call specifications for events
This article explains how to use the Events section of Cortex to create dynamic pre-match, in-play and post-match fixture information for your websites and apps, independent of external data providers. The document then exemplifies the structure of the API call required to fetch that fixture information.
Introduction
While several data providers can be used to source match and event data for websites and apps for most events, rights holders often want to provide similar information regarding events that are not covered by the major data providers, such as pre-season friendlies and under-21's matches.
For this reason, Cortex provides an Events facility to create your own dynamic pre-match, in-play and post-match real-time feeds to your fanbase, like this:

This document firstly provides an overview of the API constructs that will fetch the data used to generate a page of events like this one, then it shows the event creation process in the Cortex platform.
Events - API call constructs
Below are the API calls that may be used to fetch an event or events.
To fetch all events:
GET
{environment-id}/v2/public/clients/{clientId}/events
In which:
{environment-id}
is the URL for stage (test) or production (live).
- Stage: https://events-stage.cortextech.io
- Production: https://events.cortextech.io
- Production (US environment): https://events.cortextech.us
{clientId}
is your client ID, assigned during onboarding.
GET
https://events.cortextech.io/v2/public/clients/DEMO/events
To fetch an individual event, by ID:
GET
{environment-id}/v2/public/clients/{clientId}/events/{eventId}
In which:
{environment-id}
and {clientId}
are as described above.
{eventId}
is the identifier for an individual event. This ID can be obtained from the API described above, or from the Cortex platform.
GET
https://events.cortextech.io/v2/public/clients/DEMO/events/655c9d9e96549de1ed8a1612
Updated about 1 month ago