All resources that are retrieved as lists will be paginated. Paginated responses have a links key that includes the url for the next set of results.
{
"data": {
// ...
},
"links": {
"next": "https://api.carriersource.io/carriers?page[cursor]=WzEsMl0"
}
}Currently, the default number of results per page is 10 and the maximum number is 100. You may customize the number of results per page using the page[size] query parameter. To retrieve all results, you must programmatically loop through the pages and fetch results.
