# Pagination All top-level API resources have support for bulk fetches via "list" API methods. For instance, you can [list customers](https://app.resolvepay.com/docs/api/#tag/Customers/paths/~1customers/get), [list invoices](https://app.resolvepay.com/docs/api/#tag/Invoices/paths/~1invoices/get). These list API methods share a common structure, taking at least two parameters: `limit` and `page`. - `count` - represents total amount of records, satisfying the request query. - `page` - a multiplier value, which gets applied to the `limit` and shows what position records are being returned from. For example, if `limit = 20` and `page = 5`, then maximun `20` records will be returned from position `5 * 20 = 100`. - `limit` - maximun amount of records, which can be returned. - `results` - array of records being returned. If no records satisfy request condition, the array will be empty.