latestOpenAPI 3.1.02026-08-1051108155.9 KB

6e6f8dad92bf

Token

Returns a token by its id

get/v1/token/{id}

Path parameters

idstring required

Response

addedBlockNumberstring required

Block number when the token was added

addressstring hex required

Address of the token (non-checksummed; zero address if virtual)

createdAtinteger required

Token creation timestamp (ms since Unix Epoch)

depositEnabledboolean required

Whether the token is enabled for deposit

depositFeestring decimal required

Amount of native units charged on deposit expressed as a decimal (precision: 9)

erc20Decimalsnumber

ERC20 token decimals (available if not virtual)

erc20Namestring

ERC20 token name (available if not virtual)

erc20Symbolstring

ERC20 token symbol (available if not virtual)

idstring uuid required

Id representing the token

lzOftAddressstring hex required

LayerZero OFT address of the token (non-checksummed; if has LZ OFT or adapter, zero address if not)

minDepositstring decimal required

Min deposit amount as native units expressed as a decimal (precision: 9)

namestring required

The unique exchange defined token name driven by addToken onchain

removedBlockNumberstring

Block number when the token was removed (undefined if not removed)

withdrawEnabledboolean required

Whether the token is enabled for withdraw

withdrawFeestring decimal required

Amount of native units charged on withdraw expressed as a decimal (precision: 9)

Example response

{
  "addedBlockNumber": "838808",
  "address": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
  "createdAt": 1712019600000,
  "depositEnabled": true,
  "depositFee": "0",
  "erc20Decimals": 18,
  "erc20Name": "Wrapped USDe",
  "erc20Symbol": "WUSDe",
  "id": "9036443a-441a-4a66-87f2-bd5c44cdca7a",
  "lzOftAddress": "0x41e038d9c9aF27369EcBCe72A69a96695A1fD0D3",
  "minDeposit": "10.123456",
  "name": "USD",
  "withdrawEnabled": true,
  "withdrawFee": "1"
}