Token Info
Get detailed metadata and realtime price information for any native asset or ERC20 token including symbol, name, decimals, supply information, USD pricing, and logo URLs.
The Tokens API provides metadata and realtime pricing information for native and ERC20 tokens on supported EVM blockchains. The API returns:
- Token metadata (symbol, name, decimals)
- Current USD pricing information
- Supply information
- Logo URLs when available
The ?chain_ids
query parameter is mandatory.
To fetch tokens for all supported chains, pass the ?chain_ids=all
query parameter.
You can also specify specific chains with ?chain_ids=11,250,1
.
Token Prices
Sim looks up prices onchain. We use the most liquid onchain pair to determine a usd price. We return the available liquidity in pool_size
as part of the response.
Pagination
This endpoint uses cursor-based pagination. You can use the limit
parameter to define the maximum page size.
Results might at times be less than the maximum page size.
The next_offset
value is included in the initial response and can be utilized to fetch the next page of results by passing it as the offset
query parameter in the next request.
You can only use the value from next_offset
to set the offset
parameter of the next page of results. Using your own offset
value will not have any effect.
Headers
API key to access the service
Path Parameters
The contract address of the token or 'native' for the native token of the chain
Query Parameters
Either 'all' or a comma separated list of chain ids to get token info for
Maximum number of prices to return
x >= 0
The offset to paginate through result sets; this is a cursor being passed from the previous response, only use what the backend returns here
Response
Successful Response
The response is of type object
.