Pagination
All endpoints support pagination with the following parameters:
- _page: The page number to retrieve (defaults to 1)
- _pageSize: The number of items per page (default and maximum may vary by endpoint — see each endpoint’s documentation for details)
The pagination object in the response contains:
- page: Current page number
- pageSize: Number of items per page
- rowCount: Total number of items across all pages
- pageCount: Total number of pages
Pagination Example
Section titled “Pagination Example”To retrieve the second page with 50 items per page:
curl -X GET "https://api.sitemark.com/sites?_page=2&_pageSize=50" \ -H "Authorization: ApiKey your-api-key-here"