Skip to main content

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/pools to discover available liquidity before querying reserves
  • Join with reserves โ€” Link pool metadata to reserve snapshots via pool_uid for 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:
Lookup specific pool:
Find pools by token pair (AND โ€” both tokens required):
Find all pools listing a single token (exit liquidity):
Filter pools by type:

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_uid for pool economics
  • Tokens โ†’ Prices: Use token addresses in pricing endpoints to get market data

See Also

Last modified on July 19, 2026