Introduction to API

Now that all prerequisites have been fulfilled, we’re ready to send our first request to the API!

Before you are able to call our API, you need a SportsAPI360 account. Register now.

To make our first request, we’ll need a way to get authenticated first. Football API 1.0 utilizes API tokens for authenticating requests. You can obtain and manage your API key in the SportsAPI360.

Example API key: [HdoiD312ND….]

The API key is intended for your eyes only and, as such, should be stored securely.

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

We recommend you use Postman for convenience. Every endpoint has an example request ready for you to use. Hit the button below to import our Football API collection. Run in Postman

Last updated