Skip to main content
POST
/
api
/
dappradar
/
tokens
/dappradar/tokens
curl --request POST \
  --url https://api.anysite.io/api/dappradar/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "token": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "@type": "DappradarTokenDetail",
    "symbol": "<string>",
    "image": "<string>",
    "price": 123,
    "change_24h": 123,
    "change_7d": 123,
    "change_30d": 123,
    "change_1y": 123,
    "market_cap": 123,
    "market_cap_rank": 123,
    "fully_diluted_valuation": 123,
    "volume_24h": 123,
    "circulating_supply": 123,
    "total_supply": 123,
    "all_time_high": 123,
    "ath_change_percent": 123,
    "all_time_low": 123,
    "atl_change_percent": 123,
    "high_24h": 123,
    "low_24h": 123,
    "tags": [],
    "description": "<string>",
    "resources": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
token
string
required

Token slug from its DappRadar url (the part after /token/)

Minimum string length: 1
Examples:

"bitcoin"

"ethereum"

"uniswap"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
name
string
required
@type
string
default:DappradarTokenDetail
symbol
string | null
image
string | null
price
number | null
change_24h
number | null
change_7d
number | null
change_30d
number | null
change_1y
number | null
market_cap
number | null
market_cap_rank
integer | null
fully_diluted_valuation
number | null
volume_24h
number | null
circulating_supply
number | null
total_supply
number | null
all_time_high
number | null
ath_change_percent
number | null
all_time_low
number | null
atl_change_percent
number | null
high_24h
number | null
low_24h
number | null
tags
string[]
description
string | null
resources
object[]