Initiate a fiat payout from an account to a bank beneficiary. Funds are debited and locked immediately. The transaction enters LOCKED status and awaits provider execution.
curl --request POST \
--url https://api.nxos.io/v1/transactions/fiat-payouts \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"beneficiaryId": "bene_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"amount": "49985.00",
"asset": "USD",
"method": "WIRE"
}
'{
"object": "transaction",
"transactionId": "txn_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "FIAT_PAYOUT",
"status": "LOCKED",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"beneficiaryId": "bene_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"amount": "49985.00",
"asset": "USD",
"method": "WIRE",
"bank": {
"bankName": "JPMorgan Chase",
"swiftCode": "CHASUS33",
"accountNumber": "123456789",
"iban": null
},
"fee": {
"fixed": "50.00",
"bps": 0,
"bpsAmount": "0.00",
"total": "50.00",
"asset": "USD"
},
"createdAt": "2025-03-15T14:32:00.000Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.nxos.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token. Format: Bearer <api_key>
Unique key per logical operation. UUID v4 recommended. Max 255 characters.
Request body for initiating a fiat payout.
Source account to debit.
Bank beneficiary to pay out to.
Payout amount in major units (e.g. "10000.00").
Asset code (e.g. USD, EUR).
Transfer method (e.g. WIRE, SEPA).
Optional pin against fee drift. Echo the schedule returned by
GET /v1/fees/fiat-payout to guarantee we charge exactly what you quoted.
If the schedule has changed since the quote, we return
409 fee_schedule_drifted and the client should refresh + retry. Omit to
accept whatever the current schedule says.
Show child attributes
Optional description.
Free-form tags (max 20 tags, each up to 100 characters).
Arbitrary metadata (max 50 keys, max 4 KB serialized).
Show child attributes
The request has succeeded.
A fiat payout transaction in LOCKED state, awaiting provider execution.
Object type. Always transaction.
transaction Unique transaction identifier.
Transaction type. Always FIAT_PAYOUT.
FIAT_PAYOUT Transaction status. LOCKED after initiation.
LOCKED Source account.
Target beneficiary.
Payout amount in major units.
Asset code.
Transfer method.
Snapshot of bank details at time of payout.
Show child attributes
Fee breakdown for this transaction. Always populated; every component is zero when no fee applies.
amount is what the beneficiary receives; the user's account is debited amount + fee.total.
Show child attributes
{
"fixed": "50.00",
"bps": 0,
"bpsAmount": "0.00",
"total": "50.00",
"asset": "USD"
}When the transaction was created.
curl --request POST \
--url https://api.nxos.io/v1/transactions/fiat-payouts \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"beneficiaryId": "bene_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"amount": "49985.00",
"asset": "USD",
"method": "WIRE"
}
'{
"object": "transaction",
"transactionId": "txn_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "FIAT_PAYOUT",
"status": "LOCKED",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"beneficiaryId": "bene_d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"amount": "49985.00",
"asset": "USD",
"method": "WIRE",
"bank": {
"bankName": "JPMorgan Chase",
"swiftCode": "CHASUS33",
"accountNumber": "123456789",
"iban": null
},
"fee": {
"fixed": "50.00",
"bps": 0,
"bpsAmount": "0.00",
"total": "50.00",
"asset": "USD"
},
"createdAt": "2025-03-15T14:32:00.000Z"
}