Filter the API response on multiple related entities. There are static filters and dynamic filters.
Please find the possibilities in the Static and Dynamic Filter tab.
Not applicable for this endpoint.
The dynamic filters are based on entities and includes. Each dynamic filter uses an entity to filter on and one entity to apply the filter on. Below are examples with explanations of how filters are set up. For more information, please look at our Filters page.
Dynamic Filters
Available on Entity
Description
Examples
regions
Coaches, Leagues, Players, Teams, and way more.
Check this endpoint for all possibilities.
Filter regions and more based on cities.
&include=regions&filters=regionCities:regionIDS
Pagination
No
Include depth
You can use a total of 4 nested includes on this endpoint
var unirest = require('unirest');
var req = unirest('GET', 'https://api.sportmonks.com/v3/core/cities/{ID}?api_token={your_token}')
.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.raw_body);
});