Skip to main content
POST
/
v1
/
merchants
/
{merchant_id}
/
settlement-accounts
Add settlement account
curl --request POST \
  --url https://api.clearbox.example.com/v1/merchants/{merchant_id}/settlement-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "bank_routing_number": "<string>",
  "bank_account_number": "<string>",
  "stablecoin_address": "0xMerchantWallet",
  "stablecoin_chain": "polygon"
}
'
{
  "settlement_account_id": "stl_9c4b",
  "merchant_id": "<string>",
  "destination": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.clear-box.io/llms.txt

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

Authorizations

Authorization
string
header
required

ClearBox API key. Use cb_sandbox_... in the sandbox and cb_live_... in production.

Path Parameters

merchant_id
string
required
Example:

"mer_7d3a"

Body

application/json
destination
enum<string>
required
Available options:
bank_ach,
bank_wire,
stablecoin
bank_routing_number
string
bank_account_number
string
stablecoin_address
string
Example:

"0xMerchantWallet"

stablecoin_chain
string
Example:

"polygon"

Response

201 - application/json

Settlement account added.

settlement_account_id
string
Example:

"stl_9c4b"

merchant_id
string
destination
string
status
enum<string>
Available options:
pending_verification,
active,
disabled