GETTING STARTED

Pagination

Pagination

List endpoints support pagination via query parameters.

Query Parameters

page (int, default 1)

The page number to retrieve.

page_size (int, default 50, max 200)

Number of items per page.

Response Format

1{
2  "success": true,
3  "data": [...],
4  "pagination": {
5    "page": 1,
6    "page_size": 50,
7    "total_pages": 4,
8    "total_items": 185
9  }
10}

Example

1GET /orders/history?user_id=tl_user_9e8127&page=2&page_size=25