By default all request are limited to 1000. The Meta element contains necessary information to perform paging
{
"Meta": {
"Offset": 0,
"Count": 1000,
"Total": 1176
},
...
}
The count element tells you the total count return, while the Total element tells you how many results the are in the result
You can override the default limit by passing a query parameter "limit"
Example
../SalesOrder?limit=10
Use the query parameter "offset" to offset the result and get the next page(s)
Example
../SalesOrder?offset=1000