All top-level API resources have support for pagination. For instance, you can fetch open orders and these list API methods share a common structure.
List response format
{
"orders": [{...}, {...}],
"has_more": true
}
orders
array: An array containing the actual response elements, paginated.
has_more
boolean: whether or not there are more elements available. If false, this set comprises the end of the list.