Skip to main content
POST
/
api
/
dappradar
/
pairs
/
search
/dappradar/pairs/search
curl --request POST \
  --url https://api.anysite.io/api/dappradar/pairs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "sort": "vol"
}
'
[
  {
    "pair": "<string>",
    "@type": "DappradarPair",
    "rank": 123,
    "pool_id": 123,
    "base": "<string>",
    "quote": "<string>",
    "chain": "<string>",
    "dex": "<string>",
    "price": 123,
    "volume_24h": 123,
    "liquidity": 123,
    "change_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 DEX trading pairs to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:vol

Sort order for the pairs

Available options:
vol,
price,
liq,
d24

Response

Successful Response

pair
string
required
@type
string
default:DappradarPair
rank
integer | null
pool_id
integer | null
base
string | null
quote
string | null
chain
string | null
dex
string | null
price
number | null
volume_24h
number | null
liquidity
number | null
change_24h
number | null