Back to home Build on
For Developers & Indie Hackers
Build on
unified prediction market data
One SDK, all platforms, same schema. No data normalization headaches. Ship your prediction market app this weekend.
Be first to know when we launch. No spam, ever.
The Difference
Why unified data matters for builders
Other aggregator APIs
One API, but you still need to handle different response formats per platform.
// Different schema for each platform
polymarketData.outcomes[0].price
kalshiData.yes_price
predictitData.contracts[0].lastTradePrice
// You still write mapping code
function normalizePrice(data, platform) {
switch(platform) { ... }
}Probalytics
One API, one schema. Same response format regardless of source platform.
// Same schema for ALL platforms
event.platforms.polymarket.price // 0.52
event.platforms.kalshi.price // 0.48
event.platforms.predictit.price // 0.50
// No normalization code needed!
// Events already matched across platformsGet Started
From zero to streaming data in 3 steps
1
Install the SDK
npm install @probalytics/sdk 2
Add your API key
new Probalytics({ apiKey }) 3
Stream unified data
client.events.stream() import { Probalytics } from '@probalytics/sdk'
const client = new Probalytics({ apiKey: 'pk_...' })
// Get unified view of ANY event across ALL platforms
const event = await client.events.get('bitcoin-100k-2024')
// Same schema regardless of source!
console.log(event.platforms)
// { polymarket: { price: 0.52, volume: 1200000 },
// kalshi: { price: 0.48, volume: 800000 },
// predictit: { price: 0.50, volume: 200000 } }
// No parsing, no mapping, no normalization codeInspiration
What you can build
Cross-platform features that weren't possible before
Price Comparison Widget
Show the same event across all platforms with live prices
Aggregated Odds Dashboard
Build a unified view of prediction market odds
Cross-Platform Alert Bot
Discord/Telegram alerts when spreads exceed thresholds
Prediction Consensus Tracker
Track how consensus evolves across platforms
Comparison
Probalytics vs the alternatives
| Feature | Probalytics | Other Aggregators | Direct APIs |
|---|---|---|---|
| Single API endpoint | |||
| Unified response schema | |||
| Cross-platform event linking | |||
| No normalization code needed | |||
| TypeScript SDK | varies | ||
| Python SDK | varies | ||
| Real-time streaming | varies |
Start Building
Ready to ship your prediction market app?
Join the waitlist for early access to the unified prediction market API.
Be first to know when we launch. No spam, ever.