Skip to main content
GET
/
v1
/
public
/
assets
List supported currencies
curl --request GET \
  --url https://api.example.com/v1/public/assets \
  --header 'X-Signature: <api-key>'
[
  {
    "code": "USDT_TRC20",
    "symbol": "USDT",
    "displayName": "Tether USD (TRC-20)",
    "network": "TRON",
    "tokenStandard": "TRC20",
    "decimals": 6,
    "depositEnabled": true,
    "payoutEnabled": true,
    "contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
    "minDeposit": "1",
    "minPayout": "1"
  }
]

Authorizations

X-Signature
string
header
required

HMAC-SHA256-Hex(timestamp + "." + raw_body, api_secret)

Response

200 - application/json
code
string
required

Код актива (используйте в assetCode при создании deposit/payout).

Example:

"USDT_TRC20"

symbol
string
required

Тикер.

Example:

"USDT"

displayName
string
required

Человекочитаемое название.

Example:

"Tether USD (TRC-20)"

network
string
required

Сеть актива.

Example:

"TRON"

tokenStandard
string | null
required

Стандарт токена (TRC20 / ERC20 / BEP20 / JETTON). null для нативной монеты.

Example:

"TRC20"

decimals
number
required

Число десятичных знаков.

Example:

6

depositEnabled
boolean
required

Доступны ли депозиты в этом активе.

Example:

true

payoutEnabled
boolean
required

Доступны ли выплаты в этом активе.

Example:

true

contractAddress
string | null
required

Адрес контракта токена (публичная on-chain информация). null для нативной монеты.

Example:

"TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"

minDeposit
string
required

Минимальная сумма депозита (string).

Example:

"1"

minPayout
string
required

Минимальная сумма выплаты (string).

Example:

"1"