Skip to main content
GET
/
v1
/
tokens
/
{chainId}
/
{tokenAddress}
Get detailed token information on a specific chain.
curl --request GET \
  --url https://api.hydric.org/v1/tokens/{chainId}/{tokenAddress} \
  --header 'Authorization: Bearer <token>'
{
  "token": {
    "chainId": 1,
    "address": "0x0000000000000000000000000000000000000000",
    "decimals": 18,
    "name": "Ether",
    "symbol": "ETH",
    "logoUrl": "https://logos.hydric.org/tokens/1/0x0000000000000000000000000000000000000000",
    "totalValuePooledUsd": 154000000.5
  }
}

Authorizations

Authorization
string
header
required

Use the docs sandbox API key for authentication: hydric_docs_4N4ocuirsN8Sh

Path Parameters

chainId
number
required

The numeric ID of the blockchain where the token resides.

Example:

1

tokenAddress
string
required

The Token contract address.

Example:

"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"

Response

The requested token information.

token
object
required

The requested token information.

Example:
{
"chainId": 1,
"address": "0x0000000000000000000000000000000000000000",
"decimals": 18,
"name": "Ether",
"symbol": "ETH",
"logoUrl": "https://logos.hydric.org/tokens/1/0x0000000000000000000000000000000000000000",
"totalValuePooledUsd": 154000000.5
}