Skip to main content
POST
/
api
/
dappradar
/
tokens
/
markets
/dappradar/tokens/markets
curl --request POST \
  --url https://api.anysite.io/api/dappradar/tokens/markets \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "token": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "pair": "<string>",
    "@type": "DappradarTokenMarket",
    "base": "<string>",
    "quote": "<string>",
    "dex": "<string>",
    "chain": "<string>",
    "price": 123,
    "volume_24h": 123,
    "liquidity": 123
  }
]

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"

count
integer
required

Number of trading pairs to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

pair
string
required
@type
string
default:DappradarTokenMarket
base
string | null
quote
string | null
dex
string | null
chain
string | null
price
number | null
volume_24h
number | null
liquidity
number | null