Description
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
| Endpoint | Summary | Dataset ID | Typical Latency |
|---|---|---|---|
POST /evm/tokens/erc20 | ERC-20 token registry with metadata and compliance fields | 0201 | < 200 ms |
POST /evm/pools | AMM pool registry with type classifications and fee tiers | 0203 | < 200 ms |
POST /evm/pools/fee-terms | Pool fee configuration (total fee + split across recipients) | 0204 | < 200 ms |
Parameter Conventions
ERC-20 contract address filter (hex string, 20 bytes, no
0x prefix).BlockDB pool identifier for direct pool lookups.
Pool contract addresses for AMM pools.
Starting block number (inclusive) for creation-time filtering.
Ending block number (inclusive) for creation-time filtering.
Starting timestamp (ISO-8601). If it falls between blocks, the next block after this timestamp is used.
Ending timestamp (ISO-8601). If it falls between blocks, the last block before this timestamp is used.
Chain identifier for the target EVM network. See Chain enumeration for supported values.
Pool type filters. Use Pool Type enumeration values.
Usage Guidance
- Start with pools — Use
/evm/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/tokens/erc20— ERC-20 token registryPOST /evm/pools— AMM pool registryPOST /evm/pools/fee-terms— Pool fee configurationPOST /evm/reserves— Pool reserve snapshots- Pool Type — AMM pool classifications
- Digital Exchange — DEX protocol identifiers