v1

latestOpenAPI 3.1.02026-07-24590534.0 KB

Fetch Payment Address by id

Get details of a payment address, tethered to an authenticated account.

get/users/{user_id}/wallets/{currency}/addresses/{address_id}

Path parameters

user_idstring required

The User ID. Use 'me' if fetching wallets of main authenticated user, use the user_id if fetching for Sub-account linked to the authenticated user.

currency'btc' | 'usdt' | 'eth' | 'xaut' | 'usat' | 'xrp' | 'dash' | 'ltc' | 'trx' | 'doge' | 'bnb' | 'pol' | 'usdc' | 'aave' | 'shib' | 'link' | 'cake' | 'xlm' | 'ada' | 'bch' | 'floki' | 'sol' | 'cfx' | 'ton' | 'sui' | 'zk' | 'lsk' | 'axcnh' | 'qdx' | 'cngn' required

Allowed Currencies values: usd, btc, ltc, eth, xrp, usdt, dash, trx, doge, xrp, bnb, matic, shib, axs, safemoon, cake, xlm, aave, link.

address_idstring required

ID of the payment address to be retrieved

Response

200

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Successful",
  "data": {
    "id": "fp4gzgx5",
    "currency": "btc",
    "address": "38KA5TtxbsFYscyZDGHpHbos1AMLNUgKGJ",
    "total_payments": "0.0",
    "created_at": "2021-04-09T10:49:55.000+01:00",
    "updated_at": "2021-04-09T10:49:56.000+01:00"
  }
}