Skip to main content
POST
/
api
/
dappradar
/
markets
/dappradar/markets
curl --request POST \
  --url https://api.anysite.io/api/dappradar/markets \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "pools": [
    2255,
    128
  ]
}
'
[
  {
    "@type": "DappradarMarket",
    "timestamp": 123,
    "dapp_count": 123,
    "volume_24h": 123,
    "tvl": 123,
    "uaw": 123,
    "pools": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
pools
integer[] | null

Optional list of pool ids to include live prices for

Example:
[2255, 128]

Response

Successful Response

@type
string
default:DappradarMarket
timestamp
integer | null
dapp_count
integer | null
volume_24h
number | null
tvl
number | null
uaw
integer | null
pools
object[]