v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Transactions

List Beneficiary Transactions

Retrieve a paginated list of all transactions for a specific beneficiary

get/v1/beneficiaries/{beneficiary_id}/transactions

Path parameters

beneficiary_idstring uuid required

Query parameters

pageinteger
limitinteger

Response

Transactions retrieved successfully

Example response

{
  "data": {
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 1,
      "total": 1
    },
    "transactions": [
      {
        "id": "f656afd1-7735-43b0-b630-04f0ff7158b3",
        "transaction_type": "OFFRAMP",
        "from_amount": 3,
        "payout_amount": 4.35,
        "processing_amount": 3,
        "status": "COMPLETED",
        "fx_rate": 1.45,
        "developer_fee_percentage": 0.45,
        "developer_fee_fixed": 1.25,
        "from_currency": "USDC",
        "payout_currency": "AUD"
      }
    ]
  }
}