v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Withdrawals

Get withdrawal addresses

Retrieves a list of all withdrawal addresses created by users as part of your participant.

get/withdrawals/digital_asset_addresses

Query parameters

participant_codestring

Filters for withdrawal addresses by a specific participant_code

pagestring

Filters for a specific page (pagination)

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.

Response

Successfully retrieved paginated list of withdrawal addresses with optional filters: participant_code, page.

pagenumber
total_pagesnumber

Example response

{
  "message": [
    {
      "withdrawal_account_id": 78,
      "name": "Fund ABC Wallet",
      "address": "M9zjMhjaPfwaeyeH2SY6aWyGqdTS9feg8Z",
      "status": "APPROVED",
      "asset": "LTC",
      "limit": 1000,
      "submitted_address": "BTC",
      "account_group": "33nb3pKcSZ69rUNNvZYkksisWvrzCmi3Jt",
      "participant_code": "ABCDEF"
    }
  ],
  "page": 1,
  "total_pages": 1
}