API reference
Pagination
Proper’s API methods use cursor-based pagination through the startingAfter
parameter. It accepts an existing object ID value and return objects in the specific resource order.
The startingAfter
parameter returns objects listed after the named object.
Params
limit
number
default: 10This specifies a limit on the number of objects to return, ranging between 1 and 100.
startingAfter
string
A cursor to use in pagination. startingAfter
is an object ID that defines your place in the list. For example, if you make a list request and receive 100 objects, ending with obj_propster
, your subsequent call can include startingAfter=obj_propster
to fetch the next page of the list.