cURL
curl --request GET \ --url https://api.example.com/orders
{ "items": [ { "id": "<string>", "totalPrice": 123, "status": "<string>", "createdAt": {}, "address": { "province": "<string>", "city": "<string>", "detail": "<string>" } } ], "pageIndex": 123, "pageSize": 123, "totalCount": 123, "totalPages": 123 }
200 OK
curl -X GET "https://api.example.com/orders?pageIndex=1&pageSize=20" \
{ "items": [ { "id": "order_abc123def456", "totalPrice": 109.97, "status": "CREATED", "createdAt": "2026-03-04T10:30:00Z", "address": { "province": "California", "city": "San Francisco", "detail": "123 Market St, Suite 400" } }, { "id": "order_xyz789uvw012", "totalPrice": 299.99, "status": "PAID", "createdAt": "2026-03-03T15:45:00Z", "address": { "province": "New York", "city": "New York", "detail": "456 Broadway, Apt 12B" } } ], "pageIndex": 1, "pageSize": 20, "totalCount": 42, "totalPages": 3 }