Recording 1,000 markets live

Real-time Polymarket data, self-sovereign

WebSocket streaming, market intelligence, and sub-2ms historical queries. We record our own orderbook data directly from Polymarket. No middlemen.

2.5 GB
Orderbook Data
1,000
Markets Tracked
<2 ms
Query Latency
24/7
Sovereign Recording
Top Markets Right Now Live from API
Loading live data...
WebSocket streaming
// Connect to real-time stream
const ws = new WebSocket(
  "wss://api.smauglabs.com/v1/ws/stream"
);

// Subscribe to any market
ws.send(JSON.stringify({
  type: "subscribe",
  markets: ["0x46d4..."]
}));

// Receive live orderbook updates
ws.onmessage = (e) => {
  const tick = JSON.parse(e.data);
  // { type: "price_change",
  // data: { best_bid: "0.72",
  // best_ask: "0.74" }}
};
REST + SQL
# Market intelligence
curl api.smauglabs.com/v1/markets/movers

# Deep market analysis
curl api.smauglabs.com/v1/markets
  /0x46d4.../summary


# Custom SQL on raw data
curl -X POST \
  api.smauglabs.com/v1/orderbook/query \
  -d '{"sql": "SELECT * FROM
    orderbook_raw WHERE
    market_id = '0x46d4...'
    LIMIT 100"}'

Why SmaugLabs

WebSocket Streaming

Real-time orderbook updates streamed directly to you. Subscribe to specific markets or receive everything. Fan-out from our sovereign pipeline.

🛡

Self-Sovereign Data

We record our own orderbook data directly from Polymarket's CLOB WebSocket. No dependency on third parties. If they go down, we keep running.

Sub-2ms Queries

DuckDB analytical engine on columnar parquet data. Faster than any REST API wrapping a row-store database. Run custom SQL against raw orderbooks.

📈

Market Intelligence

Top movers, liquidity signals, and deep per-market analysis. Cross-reference live pricing with historical patterns and news context.

📰

News Enrichment

Relevant news articles automatically linked to Polymarket events. Understand what's driving price movements with context from real-world sources.

📚

Full Orderbook History

Snapshots, depth charts, spread history, and slippage analysis for every market. Complete history stored in compressed parquet files.

API Surface

WSS /v1/ws/stream Real-time orderbook streaming
GET /v1/markets/movers Top markets by volume
GET /v1/markets/{id}/summary Deep market analysis
GET /v1/markets/signals/liquidity Wide spread opportunity signals
GET /v1/orderbook/{token}/snapshot Point-in-time orderbook
GET /v1/orderbook/{token}/history Aggregated time buckets
POST /v1/orderbook/query Custom SQL on raw data
GET /v1/events/markets/search Search markets by keyword
GET /v1/metadata/news/{event_id} Event-linked news articles

Pricing

Free
$0
Get started instantly
  • 120 requests / minute
  • 10,000 queries / day
  • Public endpoints + market intel
  • News enrichment
Enterprise
Custom
Volume & SLA
  • Unlimited everything
  • Dedicated WebSocket stream
  • Parquet file downloads
  • Custom enrichment
  • SLA guarantee