Pagination

Onbo supports pagination for any of our "List all" endpoints, including:

  • List all users

  • List all loans

  • List all drawdowns on a line of credit

  • List all repayments on a loan

To paginate an API request, pass a limit and offset parameter in the URL of your request. For example, when retrieving a list of users the following request will pull the first 25 users:

GET https://sandbox-api.nanol.com/v1/users?limit=25&offset=0 

Similarly, the following request will pull the next 25 users (users 26-50):

GET https://sandbox-api.nanol.com/v1/users?limit=25&offset=25

When omitted, the default value for limit is 25 and offset is 0.

Last updated