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