API Reference
Stablecoins
Get Crypto Address [GET]

Get Crypto Address

https://sandboxapi.bitnob.co/api/v1/addresses/get-crypto-address/:coin (opens in a new tab)

Retrieve the cryptocurrency address for a specific coin.


Path Parameters

ParameterTypeRequiredDescription
coinstringCryptocurrency type (enum)

Allowed values for coin: "trx", "bnb"

Request

Addresses/Get Crypto Address [GET]
curl --request GET \
   --url https://sandboxapi.bitnob.co/api/v1/addresses/get-crypto-address/trx \
   --header 'Authorization: Bearer API-KEY' \
   --header 'accept: application/json'

Responses

🟢 200 - Result example
{
"status": true,
"message": "address gotten",
"data": {
  "address": "TWrc5VfY5TZDtSuwQ4srS5MYjXCQF",
  "coin": "TRX",
  "companyId": "253058a4-a525-4e82-9b6d-e09feee91119",
  "companyName": "nice",
  "chain": "TRX-TRC20"
}
}