Get list of wallet transfers
Get list of wallet transfers. Transfers are returned oldest first.
Authorization
Bearer OAuth access token.
In: header
Query Parameters
Page number, starting at 1. Maximum 100.
1 <= value <= 1001Number of items per page. Default 50, maximum 100.
1 <= value <= 10050Header Parameters
Version of the API used. Currently, version 1 is the only version.
Value in
- 1
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/wallet-transfers" \ -H "X-Volt-Api-Version: 1"[ { "id": "4d7e1a9c-3b5f-4e8d-a2c6-f0b4d8e2a6c0", "status": "COMPLETED", "type": "CONVERSION", "internalReference": "inv-2214", "source": { "walletId": "0b8d3f21-7c4e-4a6d-8e2f-a9c1b3d5e7f0", "currency": "USDC", "amount": "100.500000" }, "target": { "walletId": "6a4f0c9e-2d1b-4c8a-9f3e-b7d2a1c4e5f6", "currency": "EUR", "amount": "91.83" }, "rate": "0.918270", "failureReason": null, "createdAt": "2026-08-25T10:12:03+00:00", "updatedAt": "2026-08-25T10:12:41+00:00" }]Get payout details GET
Fetch particular payout details, including its current status, settled amounts, rate and on-chain transaction (once known).
Create wallet transfer POST
Create new wallet transfer, moving funds from one of your wallets to another. The same currency on both sides executes as an `INTERNAL` book move; different currencies execute as a `CONVERSION` at the live rate. The type is derived, never supplied. Execution is asynchronous: `201` returns the transfer in `PENDING` and funds have not moved yet. Poll the transfer until it reaches `COMPLETED` or `FAILED`. Insufficient balance is discovered during execution and surfaces as `FAILED`.