All top-level API resources have support for bulk fetches via "list" API endpoints. For instance, you can list loan applications. The list API endpoints share a common "pagination" object:
{
"pagination": {
"page": 1,
"total_pages": 10,
"limit": 1
},
"loan_applications": [
{...},
{...},
{...}
]
}
Parameters
limit integer, optional, default is 50
integer, optional, default is 50
A limit on the total number of objects to be returned, between 1 and 50.
page integer, optional, default is 1
integer, optional, default is 1
The number of the page to be returned.
List response format
page
The current page
limit
The maximum number of objects returns in the request.
#### total_pages
The total number of pages with objects in.