curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/transactions \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"amount": "161500.00",
"created_at": "2026-02-12T11:55:00Z",
"crypto_amount": "100.00",
"crypto_currency": "usdt",
"expires_at": "2026-02-12T12:00:00Z",
"id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"merchant_id": "mrc_001",
"merchant_reference": "order-4551",
"network": "trc20",
"status": "completed",
"terminal_id": "term_01",
"updated_at": "2026-02-12T12:15:00Z"
}
],
"has_more": true,
"limit": 50,
"next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMi0xMlQxMTo1NTowMFoiLCJpZCI6IjAxOTE3ZjAwIn0"
},
"success": true
}Returns partner-scoped transactions in stable descending order (created_at, id). Use next_cursor from the response for pagination. Optional filters support status, merchant dimensions, canonical reference, and RFC3339 time windows.
curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/transactions \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"amount": "161500.00",
"created_at": "2026-02-12T11:55:00Z",
"crypto_amount": "100.00",
"crypto_currency": "usdt",
"expires_at": "2026-02-12T12:00:00Z",
"id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"merchant_id": "mrc_001",
"merchant_reference": "order-4551",
"network": "trc20",
"status": "completed",
"terminal_id": "term_01",
"updated_at": "2026-02-12T12:15:00Z"
}
],
"has_more": true,
"limit": 50,
"next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMi0xMlQxMTo1NTowMFoiLCJpZCI6IjAxOTE3ZjAwIn0"
},
"success": true
}Comma-separated transaction statuses.
Filter by merchant identifier.
Filter by terminal identifier.
Filter by canonical merchant reference.
Inclusive start time in RFC3339.
Inclusive end time in RFC3339.
Opaque cursor returned by the previous response.
Requested page size.
1 <= x <= 100Transaction list retrieved
Standard API response wrapper for all successful responses