Checking Payout Status
Look up the current status or full details of a card payout
1 min readUpdated Mar 24, 2026
Use these endpoints as a fallback when a webhook was not received, or to retrieve full payout details for reconciliation.
#Status vs Info
| Endpoint | Returns |
|---|---|
GET /payouts/card/status/{id} | Status string only (lightweight) |
GET /payouts/card/info/{id} | Full payout details (card mask, amounts, billing) |
Prefer webhooks
Use these endpoints as a fallback. The webhook callback is the primary and lowest-latency signal for payout completion.
#Key Info Response Fields
| Field | Description |
|---|---|
transactionId | Unique payout identifier |
transactionStatus | Current status (PROCESSING, SUCCEED, FAILED) |
declineCode | Set on failure |
cardMask | Masked recipient card number |
totalAmount | Amount transferred |
orderCurrency / processedCurrency | Currencies (may differ if FX applied) |
createdAt | ISO 8601 creation timestamp |
#Related
- Card Payout Flow — End-to-end flow diagram
- API Reference: GET /api/v1/payouts/card/status/{id} — Status endpoint spec, Try It
- API Reference: GET /api/v1/payouts/card/info/{id} — Info endpoint spec, Try It
- Transaction Status Guide — All status values
Was this helpful?