API 2: Event List by Sport ID

Updated on November 5, 2025
  • Endpoint: GET /api/v1/sports/events?si={{sportId}}
  • Description: Retrieves a list of all events categorized by sportId. The data object maps each sport ID to an array of event objects.
  • Method: GET

Request Parameters

Query StringTypeDescription
sistringOne or more Sport IDs (comma-separated). Supports up to 50 market IDs.

Request Example

GET /api/v1/sports/events?si=1,2&li=12005859,846458734 HTTP/1.1 Host: {{baseUrl}}

Sample Response

{
  "data": {
    "1": [
      {
        "eid": 268416,
        "na": "French Ligue 1",
        "le": "French Ligue 1",
        "st": "2018-08-11T14:00:00.000Z",
        "go": false,
        "ip": false,
        "tv":"<iframe style='height: 230px; width: 100%;' src='<https://e765432.xyz/static/6e8d6d724eb0ffe4f4f3887693cbf8bc8842070d/getdata.php?chid=7106>'></iframe>"
        "si": 1,
        "li": 12005859
      },
      {
        "eid": 1908053,
        "na": "English Championship",
        "le": "English Championship",
        "st": "2021-08-06T18:45:00.000Z",
        "go": false,
        "ip": false,
        "tv": null,
        "si": 1,
        "li": 12005859
      }
    ],
    "2": [
      {
        "eid": 34503802,
        "na": "Set 01",
        "le": "Nottingham Challenger 2025",
        "st": "2025-07-11T10:00:00.000Z",
        "go": false,
        "ip": false,
         "tv": null,
        "si": 2,
        "li": 846458734
      },
      {
        "eid": 34503803,
        "na": "Set 02",
        "le": "Nottingham Challenger 2025",
        "st": "2025-07-11T10:00:00.000Z",
        "go": false,
        "ip": false,
        "tv": null,
        "si": 2,
        "li": 846458734
      }
    ]
  }
}

Glossary of Response Keys

KeyFull NameData TypeDescription
dataeventMapOBJECTMapping of sportId to a list of event objects
eideventIdINTUnique ID of the event
nanameSTRINGEvent name or title
leleagueSTRINGName of the league or tournament
ststartTimeSTRINGScheduled start time (ISO 8601 format)
gogameOverBOOLIndicates if the event has concluded
ipinPlayBOOLIndicates if the event is currently live
sisportIdINTSport ID to which the event belongs
tvTVSTRINGIframe for live TV
liLeague IdINTUnique ID of the League