Indexer API
GraphQL API
Example Queries
query TopPoolsByLiquidity { pools( where: { chainId: 84532 } orderBy: "dollarLiquidity" orderDirection: "desc" limit: 5 ) { items { address dollarLiquidity volumeUsd baseToken { symbol } quoteToken { symbol } } } }query RecentSwaps { swaps( where: { pool: "0x..." } orderBy: "timestamp" orderDirection: "desc" limit: 10 ) { items { txHash timestamp type amountIn amountOut swapValueUsd } } }query TokenDetails { token(address: "0x...", chainId: 84532) { address name symbol decimals image volumeUsd holderCount pool { address price } } }
REST API
Search Endpoint
Direct SQL Access (Development)
Last updated