Stablecoins APIbetaWallet transfers

Get wallet transfer details

GET
/wallet-transfers/{id}

Fetch particular wallet transfer details, including its current status and, once executed, the settled target amount and rate.

AuthorizationBearer <token>

OAuth access token.

In: header

Path Parameters

id*string

Identifier of the wallet transfer.

Formatuuid

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

application/json

curl -X GET "https://example.com/wallet-transfers/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -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"}