👶Making your first request
Now that all prerequisites have been fulfilled, we’re ready to send our first request to the API!
Before being able to make a request, you need to create your account in MySportmonks. Here you can create your personal API token, which you need to authenticate your requests. You can use the free plan or choose one of the various plans and data features of Sportmonks.
Build the request
The request consists of the following components:
The base URL
A path parameter, in this example, we use fixtures
Optional: Query string parameters, to filter on enrich your requests.
And finally, your API token
The base URL
In this example we're using the fixtures endpoint. The base URL of the fixtures endpoint is:
Your API token
We offer two different options for passing your API token. You are free to choose between the authentication methods. You can also use both of them at the same time. Please note that both methods count towards the same rate-limiting.
Authenticate using a query parameter:
You can pass your API token by passing 'api_token' in your request parameters, like so:
https://api.sportmonks.com/v3/football?api_token=YOUR_TOKEN
Authenticate using a request header: You can also pass your token via an 'Authorization' header, like so:
Header | Value |
---|---|
Authorization |
For example, this can results in the below request and response:
The example above was the most basic request you can create, while our highly flexible football API 3.0 can handle way more advanced requests. Our API's data will enable you to create excellent and specialized applications.
Let’s make another request, and add an include to get more information. The includes can be found on the specific endpoint page. In our case, fixtures.
You are getting the hang of it now. Let’s make one more request with multiple includes.
Are you interested in seeing the difference in response when you use includes vs when you don't? Check the below response examples.
API Syntax
Great, now you have used the first part of API 3.0’s syntax. A quick overview of the new syntax:
Syntax | Usage | Example |
---|---|---|
| Select specific fields on the base entity |
|
| Include relations |
|
| Filter your request |
|
| Mark end of (nested) relation. You can start including other relations from here |
|
| Mark field selection |
|
| Used as separation to select or filter on more ids |
|
Request: use multiple include
For example, you want the teams and events of a certain fixture. In this case, you would use participants;events
Request: only select a specific field
One of our new additions to API 3.0 is a name field on the fixtures. The name field contains a textual representation of the participants playing the fixture. Without selecting a specific field, the API request and response would look like this:
As you can see, the API response is rather large if you're only interested in the fixture's name. Let's select that API field to reduce the response length and size.
We're using the fixtures endpoint. This means we can select on all the fields of the fixtures entity. You can do this by adding &select=
{specific fields on the base entity}.
In our example, this would result in the below API request and response:
As you can see in the example response above, the 'name' field is only returned for the fixture.
Please note that the fields that have relations are also automatically included for technical reasons.
Request: filter your request
Next to selecting specific fields on the base entity or includes, it’s possible to filter your request.
Let’s say you want to request all the events of a specific fixture, like Celtic vs Rangers. Your request would look like this:
As you can see in the response, you will receive all match events. But what if you’re only interested in a specific event like goals, cards or substitutions? You can filter on the specific data you're interested in:
There are a lot more variations available. More information about your options to enrich your request can be found in our request options section.
This was just a short introduction about making your first request. Are you interested in more detailed information? Check our tutorials.
Last updated