Skip to main content

Get Payout

Retrieve the full details of a payout by its ID, including current status and destination information.

Endpoint

GET /v1/payouts/:id

Request

curl https://api.thiqwave.com/v1/payouts/payout_1234567890 \
  -H "X-API-Key: your_api_key"

Response

{
  "payout_id": "payout_1234567890",
  "quote_id": "quote_9876543210",
  "status": "completed",
  "source_currency": "USDT",
  "source_network": "ethereum",
  "source_amount": "500.00",
  "destination_currency": "AED",
  "destination_account": {
    "account_holder": "John Doe",
    "account_number": "0123456789",
    "bank_code": "ABUAAE3D",
    "country": "AE"
  },
  "destination_amount": 52250,
  "reference": "payout_ref_001",
  "created_at": "2026-04-09T14:30:00Z",
  "completed_at": "2026-04-09T14:35:00Z"
}

Response Fields

FieldTypeDescription
payout_idstringUnique payout identifier.
quote_idstringAssociated quote ID.
statusstringCurrent status: pending, processing, completed, failed.
source_currencystringSource stablecoin or fiat currency.
source_networkstring | nullSource blockchain (if stablecoin).
source_amountstring | integerAmount in source currency.
destination_currencystringDestination currency.
destination_accountobject | nullBank account details.
destination_addressstring | nullWallet address.
destination_amountstring | integerAmount in destination currency.
referencestringYour reference for the payout.
created_atstringISO 8601 timestamp of creation.
completed_atstring | nullISO 8601 timestamp of completion.

Notes

  • Check the status field to determine the current state of the payout.
  • Use the payout_id to track the transaction in your system.
  • Once status becomes completed, funds have been delivered.