Skip to main content
POST
/
v1
/
businesses
/
{businessId}
/
crypto-deposit-addresses
Create crypto deposit address
curl --request POST \
  --url https://api.cadanapay.com/v1/businesses/{businessId}/crypto-deposit-addresses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "USDC",
  "chain": "ethereum"
}
'
{
  "id": "<string>",
  "currency": "USDC",
  "chain": "ethereum",
  "address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Path Parameters

businessId
string
required

The unique identifier for the business

Body

application/json
currency
enum<string>
required

Stablecoin to receive

Available options:
USDC,
USDT
Example:

"USDC"

chain
string
required

Blockchain network. USDC: ethereum, solana, arbitrum, base, polygon. USDT: ethereum, solana, tron.

Example:

"ethereum"

Response

Crypto deposit address created

id
string
currency
string
Example:

"USDC"

chain
string
Example:

"ethereum"

address
string
Example:

"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"