Description
The Tokens & Liquidity suite provides access to token registries, NFT collections, 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/tokens/erc721 | ERC-721 NFT collection metadata and mint provenance | 0202 | < 200 ms |
POST /evm/pools | AMM pool registry with type classifications and fee tiers | 0203 | < 200 ms |
Parameter Conventions
ERC-20 contract address filter (hex string, 20 bytes, no
0x prefix).ERC-721 contract address filter for NFT collections.
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 — ERC-20 and ERC-721 endpoints accept 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 - Tokens → Prices: Use token addresses in pricing endpoints to get market data
See Also
POST /evm/tokens/erc20— ERC-20 token registryPOST /evm/tokens/erc721— NFT collection metadataPOST /evm/pools— AMM pool registryPOST /evm/reserves— Pool reserve snapshots- Pool Type — AMM pool classifications
- Digital Exchange — DEX protocol identifiers