List Orders
Retrieve a paginated list of all orders for your merchant.
Endpoint
GET /v1/orders
Request
Query Parameters
| Parameter | Default | Description |
|---|---|---|
page | 1 | Page number (1-based) |
limit | 10 | Items per page (max 50) |
Example
cURL
curl "https://api.nusio-saka.com/v1/orders?page=1&limit=20" \
-H "X-API-Key: your-api-key"
Response
HTTP 200 OK
{
"success": true,
"data": [
{
"id": "...",
"ref_code": "ORD-260601103045-A1B2",
"merchant_order_id": "INV-2026-00123",
"amount_minor": 5000000,
"currency_code": "IDR",
"status": "PAID",
"qris_string": "...",
"qr_url": "...",
"expires_at": "2026-06-01T10:45:45Z",
"paid_at": "2026-06-01T10:38:12Z",
"is_settled": true,
"vendor_rrn": "220601103812001",
"customer_name": "Budi Santoso",
"customer_phone": "6281234567890",
"created_at": "2026-06-01T10:30:45Z"
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 47,
"total_pages": 3
}
}
Orders are returned newest first.