Retrieve upcoming events
To retrieve information about upcoming events, including their names startTime, you can make a GET request to the following endpoint:
Endpoint
GET /event/list/?sports=[code]
Here, code should be one of the following options: AFL, NBA, American Football, Baseball, Basketball, Boxing, Cricket, Darts, Handball, Ice Hockey, Rugby League, Rugby Union, Soccer, Tennis, or Volleyball.
CURL example
This will return a list of future events with details such as their names and their start time. You can use this information when creating notifications.
Responses
200 Response example
Response Schema
Status Code 200
id
integer
Event id used in this system.
title
string
The name of the event
sports
string
Sports should be one of the following options: AFL, NBA, American Football, Baseball, Basketball, Boxing, Cricket, Darts, Handball, Ice Hockey, Rugby League, Rugby Union, Soccer, Tennis, or Volleyball.
startTime
string
Start Time of an event.
status
string
Status of an event.
participant1
string
Team Name
participant2
string
Team Name
Last updated