Skip to main content
POST
/
settlement
/
crypto
Add crypto settlement account
curl --request POST \
  --url https://api.orafi.app/v1/settlement/crypto \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "alias": "Main Wallet",
  "network": "SUI"
}
'
{
  "success": true,
  "message": "Settlement account added successfully",
  "data": {
    "id": "crypto_acc_123",
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "alias": "Main Wallet",
    "chain": "SUI",
    "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
walletAddress
string
required

Cryptocurrency wallet address

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

alias
string
required

Alias or name for this wallet

Example:

"Main Wallet"

network
enum<string>
required

Blockchain network

Available options:
SUI
Example:

"SUI"

Response

Crypto settlement account added successfully

success
boolean
Example:

true

message
string
Example:

"Settlement account added successfully"

data
object