GET
/
api
/
v1
/
prices
/
{chainId}
/
{address}
curl --request GET \
  --url https://api.enso.finance/api/v1/prices/{chainId}/{address} \
  --header 'Authorization: Bearer <token>'
{
  "decimals": 8,
  "price": 27052,
  "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
  "symbol": "WBTC",
  "timestamp": 1695197412,
  "chainId": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

address
any
required

Address of the token to search for

chainId
any
required

Chain ID of the network to search for

Response

200 - application/json
decimals
number
required
Example:

8

price
number
required
Example:

27052

address
string
required
Example:

"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599"

symbol
string
required
Example:

"WBTC"

timestamp
number
required
Example:

1695197412

chainId
number
required
Example:

1