Skip to main content
POST
/
transactions
/
payout
/
fiat
Create fiat payout
curl --request POST \
  --url https://api.orafi.app/v1/transactions/payout/fiat \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": 10000,
  "accountId": "fiat_acc_123",
  "accountIdentifier": "1234567890",
  "bankCode": "044",
  "save": false
}
'
{
  "success": true,
  "message": "Fiat payout initiated successfully",
  "data": {
    "id": "payout_abc123",
    "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "network": "SUI",
    "amount": "10.50",
    "status": "CONFIRMED",
    "txDigest": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.orafi.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for merchant authentication required for most endpoints

Body

application/json
amount
number
required

Payout amount

Example:

10000

accountId
string

ID of a saved fiat settlement account

Example:

"fiat_acc_123"

accountIdentifier
string

Bank account number to use when a saved account is not provided

Example:

"1234567890"

bankCode
string

Bank code to use with accountIdentifier when a saved account is not provided

Example:

"044"

save
boolean

Save the provided bank account for future payouts

Example:

false

Response

Fiat payout created successfully

success
boolean
Example:

true

message
string
Example:

"Fiat payout initiated successfully"

data
object