v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Deposits

Create deposit address

Creates a deposit address for a given asset.

post/deposits/digital_asset_addresses

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

Request body

participant_codestring required

The participant to create the address for. Must either match the calling platform or be a customer of the calling platform.

assetstring required

The asset symbol to create a deposit address for (e.g. BTC, USDC.ETH).

account_labelstring

Account label the address should be associated with. Defaults to general when omitted. Case sensitive; must match the letters-numbers-_---: pattern and be at most 40 characters.

Example request

{
  "participant_code": "ABCDEF",
  "asset": "BTC",
  "account_label": "general"
}

Response

Successfully created deposit address. Returns the created resource with generated IDs and timestamps.

Example response

{
  "message": {
    "created_at": 1590663417000,
    "address": "2NCgV7BXXafJZ86utcYFs5m3tCpkcpLafeG",
    "participant_code": "ABCDEF",
    "platform_code": "ABCDEF",
    "asset": "BTC",
    "account_label": "general"
  }
}