Overview
The Tokens & Liquidity suite provides access to token registries and automated market maker (AMM) pool metadata. These endpoints deliver standardized identifiers and classification data that enable consistent cross-dataset joins and filtering. All records include lineage fields linking back to on-chain creation events.Endpoint Matrix
Parameter Conventions
string
ERC-20 contract address filter (hex string, 20 bytes, no
0x prefix).string
BlockDB pool identifier for direct pool lookups.
string[]
Pool contract addresses for AMM pools.
number
Starting block number (inclusive) for creation-time filtering.
number
Ending block number (inclusive) for creation-time filtering.
string
Starting timestamp (ISO-8601). If it falls between blocks, the next block after this timestamp is used.
string
Ending timestamp (ISO-8601). If it falls between blocks, the last block before this timestamp is used.
number
required
Chain identifier for the target EVM network. See Chain enumeration for supported values.
number[]
Pool type filters. Use Pool Type enumeration values.
Usage Guidance
- Start with pools โ Use
/evm/entities/poolsto discover available liquidity before querying reserves - Join with reserves โ Link pool metadata to reserve snapshots via
pool_uidfor complete liquidity analysis - Use token addresses โ the ERC-20 endpoint accepts contract addresses for direct lookups
- Filter by creation time โ Use block/time ranges to find newly created tokens or pools
- Cache token metadata โ Token names, symbols, and decimals are immutable; cache aggressively
Common Patterns
Find all ERC-20 tokens created in a time range:Dataset Relationships
- Tokens โ Pools: Join ERC-20 tokens to pools via token addresses in pool metadata
- Pools โ Reserves: Link pool metadata to reserve snapshots using
pool_uid - Pools โ Fee Terms: Join pool metadata to fee terms using
pool_uidfor pool economics - Tokens โ Prices: Use token addresses in pricing endpoints to get market data
See Also
POST /evm/entities/tokens/erc20โ ERC-20 token registryPOST /evm/entities/poolsโ AMM pool registryPOST /evm/entities/pools/fee-termsโ Pool fee configurationPOST /evm/reservesโ Pool reserve snapshots- Pool Type โ AMM pool classifications
- Digital Exchange โ DEX protocol identifiers