Get list of payouts
Get list of payouts. Payouts 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/payouts" \ -H "X-Volt-Api-Version: 1"[ { "id": "7f3b9d1e-5a2c-4e6f-b8d0-a4c6e8f0b2d4", "walletId": "6a4f0c9e-2d1b-4c8a-9f3e-b7d2a1c4e5f6", "status": "COMPLETED", "type": "CRYPTO", "payoutReference": "K7KDN3PA84MRV2XQZ9", "internalReference": "TREASURY-09", "debited": { "amount": "150.000000", "currency": "USDC" }, "paid": { "amount": "150.000000", "currency": "USDC" }, "rate": "1.000000", "beneficiary": { "type": "INDIVIDUAL", "firstName": "Jane", "lastName": "Doe", "country": "DE" }, "crypto": { "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F", "network": "ETHEREUM", "tag": null }, "transaction": { "hash": "0x9a7f1e2d3c4b5a6978869504132abfe9988776655443322110099aabbccdde", "detectedAt": "2026-09-02T10:13:11+00:00", "confirmedAt": "2026-09-02T10:14:02+00:00" }, "failureReason": null, "createdAt": "2026-09-02T10:12:03+00:00", "updatedAt": "2026-09-02T10:14:02+00:00" }]Get channel rate GET
Get the current indicative rate for the channel's conversion. It is an estimate for showing at payment initiation, **not** a locked quote: the live rate at the moment a deposit confirms on-chain is applied. The pair is fixed by the channel: `from` is always the channel's `currency` (what the end user sends) and `to` is always the currency of the channel's crediting wallet (identified by the channel's `walletId`).
Create payout POST
Create new crypto payout from one of your wallets to an external address.