> ## Documentation Index
> Fetch the complete documentation index at: https://developer.cardplus.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

# Pagination

## List Endpoints (pageNo + pageSize)

Many list endpoints use offset-style pagination:

| Parameter | Description                |
| --------- | -------------------------- |
| pageNo    | Page number (e.g. 1-based) |
| pageSize  | Number of items per page   |

Exact parameter names and response shape (e.g. total count, list field name) depend on the endpoint. See the API reference for each endpoint.

## Cursor-Based Pagination (Some Endpoints)

Some endpoints may use cursor-based pagination instead:

| Parameter | Description                                               |
| --------- | --------------------------------------------------------- |
| pageSize  | Number of records per page                                |
| pageToken | Opaque token from the previous response’s `nextPageToken` |

When the response includes `nextPageToken`, send it as `pageToken` to get the next page. Invalid `pageToken` returns 400.
