Build the request
Now that all prerequisites have been fulfilled, we’re ready to send our first request to the API!
Football API
The request consists of the following components:
The base URL
A path parameter, in this example, we use [series]
A query string parameter, which is optional, so we leave this out for now
And finally, your API key
https://apiv3.sportsapi360.com/https://apiv3.sportsapi360.com/football/api/v1/An example of a correctly authenticated request would be:
curl --location 'https://apiv3.sportsapi360.com/football/api/v1/matches/live' \
--header 'x-app-key: {{ your api key }}'[{
"tourName": "Indian Premier League, 2025",
"seriesSearchNameForES": "Indian Premier League, 2025, March, Mar",
"tourID": "7126",
"league": "IPL",
"seriesStartDate": "1742652000000",
"seriesEndDate": "1748979000000",
"T20count": 79,
"matchLevel": "domestic",
"Odicount": null,
"Testcount": null,
"seriesStatus": "live"
},
{
"tourName": "ICC CWC League 2, 2023-27",
"seriesSearchNameForES": "ICC CWC League 2, 2023-27, February, Feb",
"tourID": "4689",
"league": "ICC",
"seriesStartDate": "1707968700000",
"seriesEndDate": "1749742200000",
"T20count": null,
"matchLevel": "international",
"Odicount": 79,
"Testcount": null,
"seriesStatus": "live"
},
{
"tourName": "West Indies Women tour of England, 2025",
"seriesSearchNameForES": "West Indies Women tour of England, 2025, May, May",
"tourID": "6986",
"league": "Women's International",
"seriesStartDate": "1747848600000",
"seriesEndDate": "1749310200000",
"T20count": 3,
"matchLevel": "international-womens",
"Odicount": 3,
"Testcount": null,
"seriesStatus": "live"
}]This request will return all of the leagues.
Last updated

