All GET endpoints that return resource collections support pagination via URL parameters.
Number of resources to skip.
Number of resources to return.
# Skips the first 10 and returns the next 25 records.
curl --request GET \
--url '/records?offset=10&limit=25'