Live since May 2026

Real-time crypto prices
in under 100ms

REST and WebSocket API for Ethereum, Bitcoin, Solana, Base, and Arbitrum. CoinGecko-powered, globally distributed, zero configuration.

Real-time USD prices

Auto-refreshing every 30 seconds via CoinGecko

Bitcoin
Loading…
Fetching price data
Ethereum
Loading…
Fetching price data
Solana
Loading…
Fetching price data
Base
Loading…
Fetching price data
Arbitrum
Loading…
Fetching price data

One request. Any price.

No auth required. Just call and go.

GET https://chainpulseai.polsia.app/api/prices
// Fetching live prices…
Refresh Prices

Stream prices over WebSocket

Connect to wss://chainpulseai.polsia.app/ws/prices and receive price updates as they happen — no polling, no rate limits.

// JavaScript example
const ws = new WebSocket('wss://chainpulseai.polsia.app/ws/prices');

ws.onmessage = (event) => {
  const { type, data } = JSON.parse(event.data);
  if (type === 'prices') {
    data.forEach(p => console.log(p.chain, p.price));
  }
};
🔴
Sub-100ms Latency
In-memory cache with 20s TTL. CoinGecko fetches run in the background, your requests never wait.
🌍
Global CDN
Served from multiple providers with failover. CoinGecko powers price data — no API keys needed.
📡
REST + WebSocket
GET /api/prices for snapshots, ws:// for real-time streaming. Both return identical JSON schemas.
🛡️
Graceful Degradation
Stale cache served when upstream is down. 503 only when both live and cache are unavailable.