Search for a token by address across multiple chains.
Tokens
Search for a token by address across multiple chains.
Searches for a token at the specified contract address in all supported blockchain networks (or a subset via chainIds).
Returns a list of matching tokens with their metadata (Chain ID, Name, Symbol, Decimals). Does not include Pool TVL metrics.
GET
Search for a token by address across multiple chains.
Authorizations
Use the docs sandbox API key for authentication: hydric_docs_4N4ocuirsN8Sh
Path Parameters
The Token contract address to search for.
Example:
"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
Query Parameters
Optional list of chain IDs to restrict the lookup to.
Example:
"1,143"
Response
200 - application/json
Tokens found at the specified address.
List of tokens found at this address across different chains.
Example:
[
{
"chainId": 1,
"address": "0x0000000000000000000000000000000000000000",
"decimals": 18,
"name": "Ether",
"symbol": "ETH",
"logoUrl": "https://logos.hydric.org/tokens/1/0x0000000000000000000000000000000000000000"
}
]