Learn how to use the Insight oracle data platform for real-time price monitoring, cross-oracle comparison, and deep data analysis.
Get started with Insight in just a few steps
Insight aggregates price data from multiple oracles and blockchains to provide comprehensive market insights.
Enter a token symbol to get real-time prices from multiple oracles
Compare prices across oracles and blockchains with detailed charts
Create price alerts to get notified when conditions are met
Explore all the features Insight has to offer
Query real-time prices from multiple oracles with detailed analytics
Compare prices across different oracle providers
Analyze price differences across blockchains
Set up custom alerts for price conditions
Real-time Updates
Prices updated every second
Accurate Data
Trusted oracle sources
Comprehensive
All major oracles covered
Deep dive into our technical implementation and architecture
Learn about our data collection and validation methodology
{
"symbol": "ETH",
"price": 3456.78,
"provider": "chainlink",
"chain": "ethereum",
"timestamp": 1705315800000
}{
"prices": {
"BTC": 43256.78,
"ETH": 3456.78,
"SOL": 98.45,
...
},
"cached": false,
"timestamp": 1705315800000
}Integration guides and technical support for developers.
// Query ETH price from Chainlink
const response = await fetch(
'/api/oracles?symbol=ETH&provider=chainlink'
);
const data = await response.json();
console.log(data.price); // 3456.78
console.log(data.provider); // "chainlink"
console.log(data.timestamp); // 1705315800000// Batch query multiple prices
const response = await fetch('/api/oracles', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
requests: [
{ symbol: 'BTC', provider: 'chainlink' },
{ symbol: 'ETH', provider: 'pyth' }
]
})
});
const data = await response.json();Free users can make up to 100 requests per minute; professional users can make 1,000 requests per minute. Contact us for higher quotas.
The API returns JSON-formatted data by default. Some endpoints support CSV format via Accept header.
After registering an account, you can generate and manage your API keys on the settings page.