GET
/
v2
/
{chain_name}
/
tokens
/
{token_address}
Lookup Token
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/tokens/{token_address}
{
"token": {
"address": 2.807754160281623e+47,
"decimals": 7,
"name": "Bacacacac",
"standard": "ERC-20",
"symbol": "BAC"
}
}

Authorizations

Authorization
string
header
required

(Optional) Enter your API key in the format: Bearer <api_key>. Providing an API key may grant higher rate limits or access to additional features. The API will function without an API key for basic access.

Path Parameters

token_address
string
required

The token contract address.

Example:

1.0970776880180083e+48

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum
Example:

"ethereum"

Response

200
application/json

Successfully retrieved token information.

The response is of type object.