Insight Price API Additions

Toomas Oosalu

Insight adds more data to token price API to also return market data, historical price data and holder count in addition to the price!

Market Data

The following data is now included by default for each token:

percent_change_24h - Percentage change of the price over the last day

volume_24h_usd - Trading volume in USD over the last day

volume_change_24h - Percentage change of volume over the last day

market_cap_usd - Market cap value in USD

Holder Count

By specifying include_holders=true query param the number of on-chain holders of the token will also be returned

Historical Price Data

By including include_historical_prices=true query param, the response will contain a list of token prices per hour over the last 30 days.


Here is an example response for USDC on Ethereum

{
"data": [
{
"chain_id": 1,
"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"symbol": "USDC",
"price_usd": 0.9998078912327243,
"price_usd_cents": 100,
"percent_change_24h": -0.02612099,
"market_cap_usd": 60411059379,
"volume_24h_usd": 10036602253,
"volume_change_24h": 6.5387,
"historical_prices": [
{
"date": "2025-03-18 11:00:00",
"price_usd": 0.9998556959666844,
"price_usd_cents": 100
},
{
"date": "2025-03-18 12:00:00",
"price_usd": 0.9998533259452913,
"price_usd_cents": 100
},
{
"date": "2025-03-18 13:00:00",
"price_usd": 0.9998012400259259,
"price_usd_cents": 100
},
.... and so on over the next 30 days...
],
"holders": 2994360
}
]
}

Try it out in our playground


๐Ÿ“– Learn more about Insight - itโ€™s open source and ready to power your applications!