Stablecoins APIbetaWallet transfers

Get list of wallet transfers

GET
/wallet-transfers

Get list of wallet transfers. Transfers are returned oldest first.

AuthorizationBearer <token>

OAuth access token.

In: header

Query Parameters

page?integer

Page number, starting at 1. Maximum 100.

Range1 <= value <= 100
Default1
limit?integer

Number of items per page. Default 50, maximum 100.

Range1 <= value <= 100
Default50

Header Parameters

X-Volt-Api-Version*1

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"  }]