Skip to main content
POST
/
api
/
dappradar
/
tokens
/
search
/dappradar/tokens/search
curl --request POST \
  --url https://api.anysite.io/api/dappradar/tokens/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "DappradarToken",
    "rank": 123,
    "alias": "<string>",
    "symbol": "<string>",
    "image": "<string>",
    "price": 123,
    "change_24h": 123,
    "change_7d": 123,
    "market_cap": 123,
    "volume_24h": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of tokens to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
enum<string> | null

Filter by token category

Available options:
new,
meme-coins,
ai-coins,
gaming,
rwa,
depin

Response

Successful Response

name
string
required
@type
string
default:DappradarToken
rank
integer | null
alias
string | null
symbol
string | null
image
string | null
price
number | null
change_24h
number | null
change_7d
number | null
market_cap
number | null
volume_24h
number | null