π API & WebSocket Structure
When integrating with DexCheck, youβll direct your REST and WebSocket clients to standardized base URLs. You can override these endpoints via environment variables or configuration files to support staging, testing, or regional deployments.
REST API Structure
Base URL:
https://api.dexcheck.ai
Path:
/<service>/<resource>[?<query-params>]
service
: usually blockchain, twitter, or insights-gptresource
: the endpoint name (e.g., dex-price, token-stats, top-holders)query-params:
key=value pairs for filters, pagination, and options
Example:
GET https://api.dexcheck.ai/blockchain/dex-price?chain=eth&pair_id=0xabc123β¦&dex=uniswap
Accept: application/json
Websocket Structure
Base URL:
wss://ws.dexcheck.ai
Last updated