Skip to main content
GET
Token reads share the /v1/token/* namespace on api.dzap.io. All three endpoints are GET requests.

List tokens

Returns every known token for a chain, with live pricing.
chainId
integer
required
Chain ID to list tokens for.
source
string
Optional source filter for a curated token list.
account
string
Wallet address - include balances for this account when set.
data
object
Map keyed by token address, each value a token info object (see shape below).

Token details

Returns metadata for one or more tokens.
chainId
integer
required
Chain ID the token(s) exist on.
tokenAddress
string
Single token address.
tokenAddresses
string
Comma-separated token addresses (use instead of tokenAddress for multiple).
account
string
Include balance for this account when set.
includeBalance
boolean
includePrice
boolean
data
object
A single token info object when tokenAddress was used, or a map keyed by address when tokenAddresses was used.

Account balances

chainId
integer
required
account
string
required
data
object
Map keyed by token address, each value a token info object (same shape as Token Details above) with balance/balanceInUsd populated.

Examples

Live token prices (GET /v1/token/price) exist on the Trade API but aren’t exposed through the @dzapio/sdk client - use includePrice on the endpoints above instead.
Last modified on July 14, 2026