Skip to main content
GET
/
v0
/
tokens
Get supported tokens
curl --request GET \
  --url https://1click.chaindefuser.com/v0/tokens
[
  {
    "assetId": "nep141:wrap.near",
    "decimals": 24,
    "blockchain": "near",
    "symbol": "wNEAR",
    "price": "2.79",
    "priceUpdatedAt": "2025-03-28T12:23:00.070Z",
    "contractAddress": "wrap.near"
  }
]

Response

200 - application/json
assetId
string
required

Unique asset identifier

Example:

"nep141:wrap.near"

decimals
number
required

Number of decimals for the token

Example:

24

blockchain
enum<string>
required

Blockchain associated with the token

Available options:
near,
eth,
base,
arb,
btc,
sol,
ton,
doge,
xrp,
zec,
gnosis,
bera,
bsc,
pol,
tron,
sui,
op,
avax,
cardano,
ltc,
xlayer,
monad,
bch,
adi,
plasma,
starknet
Example:

"near"

symbol
string
required

Token symbol (e.g. BTC, ETH)

Example:

"wNEAR"

price
number
required

Current price of the token in USD

Example:

"2.79"

priceUpdatedAt
string<date-time>
required

Date when the token price was last updated

Example:

"2025-03-28T12:23:00.070Z"

contractAddress
string

Contract address of the token

Example:

"wrap.near"