Documentation
Pagination with the Common Paper API
Pagination
The Agreements Endpoint supports pagination using two optional query parameters under the page namespace: number and size.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page[number] | Integer | 1 | The page number to retrieve. Must be greater than 0. |
page[size] | Integer | 30 | The number of records to return per page. |
Example Request
GET /agreements?page[number]=1&page[size]=2
This example returns the first page of results with a maximum of 2 records.
Last modified on