Skip to main content
GET
/
partner
/
transactions
List partner transactions with cursor pagination
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
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

status
string

Comma-separated transaction statuses.

merchant_id
string

Filter by merchant identifier.

terminal_id
string

Filter by terminal identifier.

merchant_reference
string

Filter by canonical merchant reference.

from
string

Inclusive start time in RFC3339.

to
string

Inclusive end time in RFC3339.

cursor
string

Opaque cursor returned by the previous response.

limit
integer<int32>

Requested page size.

Required range: 1 <= x <= 100

Response

Transaction list retrieved

Standard API response wrapper for all successful responses

data
object
required

Cursor-based partner transaction list. Ordering is deterministic by created_at DESC then id DESC.

success
boolean
required

Indicates if the request was successful

Example:

"true"

message
string | null

Optional message for additional information