Skip to content
API DocsDocs

Checking Payout Status

Check a card payout's status and retrieve full details — including declineCode on failure

2 min readUpdated Mar 24, 2026

The info endpoint returns a card payout's current status together with full transaction detailsdeclineCode on failure, card mask, processed amounts, billing details, and more. Use it as a fallback when the webhook was not received, or to retrieve full payout details for reconciliation.

Prefer webhooks

Use this endpoint as a fallback. The webhook callback is the primary and lowest-latency signal for payout completion.

Always use /info — not /status

The /info/{id} endpoint is the only endpoint that returns declineCode. If a payout is FAILED, /info/{id} tells you why; a status-only response does not.

#Key Response Fields

FieldDescription
transactionIdUnique payout identifier
transactionStatusCurrent status (PROCESSING, SUCCEED, FAILED)
declineCodeSet on failure — numeric decline reason
cardMaskMasked recipient card number
totalAmountAmount transferred
orderCurrency / processedCurrencyCurrencies (may differ if FX applied)
createdAtISO 8601 creation timestamp
Was this helpful?