v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Transactions

List Customer Transactions

Returns a paginated list of transactions for a customer, optionally filtered by transaction type.

get/v2/transactions

Query parameters

customer_idstring required

The customer ID to fetch transactions for.

type'ONRAMP' | 'OFFRAMP' | 'CRYPTO_WITHDRAWAL' | 'CRYPTO_DEPOSIT'

Filter transactions by type.

current_pageinteger

The page number to retrieve

per_pageinteger

Number of results per page. Must be between 1 and 100.

Response

Transactions retrieved successfully

Example response

{
  "data": {
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 1,
      "total": 2
    },
    "transactions": [
      {
        "id": "8c92e9dd-6456-4aee-a441-1861144f1d8b",
        "transaction_type": "CRYPTO_WITHDRAWAL",
        "customer_id": "1a8e3bdc-05c9-4486-bdef-93464d24c9af",
        "beneficiary_id": "6af8d598-36a5-477d-9320-d7c5ba309107",
        "hash": "0xd2a3d65ce04c24c7af2b4ab86ac8c3ca525d010c600733bb062be74ee3899ec9",
        "status": "COMPLETED",
        "source_currency": "USDC",
        "destination_currency": "USDC",
        "source_amount": 5,
        "destination_amount": 4.98535,
        "total_fee": 0.014649,
        "created_at": "2026-04-29T09:56:14.906031Z",
        "updated_at": "2026-04-29T09:56:58.631047Z"
      }
    ]
  }
}