Pagination
Most GET #index methods are paginated. The XML response will include pagination metadata. You can specify the page you want very simply by passing the page parameter in your request. Pagination information will be returned as attributes on the root tag of the XML response.
GET /personas.xml?page=2
<personas type="array" current_page="2" per_page="30" total_entries="658"> ... </personas>
Pagination data is also returned in HTTP headers. For example:
Pagination-Total-Entries: 2955 Pagination-Current-Page: 1 Pagination-Per-Page: 50 Pagination-Total-Pages: 60