Skip to main content

List payouts

Quick Reference

WhatList the payouts of a wallet
WhyReconcile and monitor outbound payments, with filters and pagination
Reading Time3 min
DifficultyBeginner
PrerequisitesAuthentication → A wallet_uuid
GET/api/v1/bank/wallet/payout/Bearer TokenList payouts for a wallet

Returns a paginated list of the payouts funded by a wallet. Supports MagicQuery filter and sort expressions.


Query parameters

ParamTypeRequiredDefaultDescription
wallet_uuidstring (UUID)YesWallet to list payouts for
pageintegerNo1Page number
limitintegerNo10Items per page
filterstringNoMagicQuery filter expression (e.g. status:eq:realized)
sortstringNoMagicQuery sort expression (e.g. created:desc)

Request headers

HeaderValueRequired
AuthorizationBearer {A55_ACCESS_TOKEN}Yes

Response fields

FieldTypeDescription
pageintegerCurrent page
limitintegerItems per page
totalintegerTotal number of payouts
pagesintegerTotal number of pages
dataarrayList of payout objects (same shape as Get payout)

Error responses

StatusCodeDescription
401unauthorizedInvalid or expired Bearer token
404errors.wallet.not_foundWallet not found

Code examples

curl -s "https://sandbox.api.a55.tech/api/v1/bank/wallet/payout/?wallet_uuid=f47ac10b-58cc-4372-a567-0e02b2c3d479&filter=status:eq:realized&sort=created:desc&page=1&limit=20" \
-H "Authorization: Bearer $A55_ACCESS_TOKEN"

Response example

{
"page": 1,
"limit": 20,
"total": 2,
"pages": 1,
"data": [
{
"payout_uuid": "9b1f0c88-3a3c-4f2f-9d6e-1f0a2d4e88c1",
"status": "realized",
"type_payout": "pix",
"amount": 100.00,
"currency": "BRL",
"beneficiary_name": "João Silva",
"transaction_reference": "PAY-2048",
"created": "2026-06-16T18:00:00Z"
},
{
"payout_uuid": "5c2a13f0-5e74-4b21-9c6a-2bd9d9b0aa10",
"status": "issued",
"type_payout": "cash_pickup",
"amount": 200.00,
"currency": "USD",
"beneficiary_name": "Pedro",
"transaction_reference": "PAY-2052",
"created": "2026-06-16T18:05:00Z"
}
]
}