POST/v1/payouts/info
Query Payout
Look up a payout by payout_id or id. If both are sent, id wins.
Request body
idstringoptionalBytix payout id returned at create. If present, payout_id is used only as fallback.
payout_idstringoptionalYour payout ID. Used when id is omitted. Send at least one of the two.
Headers
AuthorizationheaderrequiredBearer pk_… from dashboard Settings → Developer.
Content-Typeheaderoptionalapplication/json on POST bodies. Not required on GET.
Response data
Same data shape as create. HTTP 200 on success.
idstringrequiredBytix payout id. Stable. Use it with query if you stored it.
payout_idstringrequiredYour payout id. Unique per workspace. Repeating it on create returns this same payout.
amountstringrequiredUSD amount as a decimal string.
currencystringrequiredAlways USD.
assetstringrequiredTicker sent on-chain, for example USDT.
networkstringrequiredNetwork display name, for example Tron.
addressstringrequiredDestination address.
crypto_amountstringoptionalQuoted crypto amount as a decimal string.
quote_ratestringoptionalUSD per unit of asset used for the quote.
statusstringrequiredpending, submitted, completed, or failed.
txidstringoptionalOn-chain transaction id when completed, else null.
payer_idstringoptionalYour user id, if sent on create.
created_atstringrequiredISO-8601 create time.
Errors
Failures still return JSON. Read code, not only the HTTP status. Full table: Errors.
40100HTTP 401optionalMissing or invalid API key.
40400HTTP 404optionalNo payout for this workspace.