Static filters are always the same and filter in one specific way without any custom options. Each static filter is listed below and has a description of how it filters. For more information, please look at our Filters page.
Static Filters
Available on Entity
Description
Example
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
Pagination
Yes
Include depth
You can use a total of 3 nested includes on this endpoint
var unirest = require('unirest');
var req = unirest('GET', 'https://api.sportmonks.com/v3/core/regions?api_token={your_token}')
.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.raw_body);
});