Learn how to handle paginated responses in the NeetoCal API.
curl --request GET \ --url "https://{your-workspace}.neetocal.com/api/external/v1/bookings?page_number=2&page_size=25" \ --header "X-Api-Key: your-api-key"
{ "bookings": [ // ... array of booking objects ], "pagination": { "total_records": 150, "current_page_number": 2, "total_pages": 6, "page_size": 25 } }
pagination.total_records