Skip to main content
POST
/
api
/
dappradar
/
pairs
/dappradar/pairs
curl --request POST \
  --url https://api.anysite.io/api/dappradar/pairs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "pair": 123,
  "timeout": 300
}
'
[
  {
    "pool_id": 123,
    "@type": "DappradarPairDetail",
    "pair": "<string>",
    "base": "<string>",
    "quote": "<string>",
    "chain": "<string>",
    "dex": "<string>",
    "price": 123,
    "change_24h": 123,
    "liquidity": 123,
    "volume_24h": 123,
    "txns_24h": 123,
    "fdv": 123,
    "age": "<string>",
    "chart_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
pair
integer
required

DEX pair pool id (from the pairs search endpoint)

Examples:

3108798

1272802

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

pool_id
integer
required
@type
string
default:DappradarPairDetail
pair
string | null
base
string | null
quote
string | null
chain
string | null
dex
string | null
price
number | null
change_24h
number | null
liquidity
number | null
volume_24h
number | null
txns_24h
integer | null
fdv
number | null
age
string | null
chart_url
string | null