Build with a better view.
Prediction market intelligence, ready for your product. Explore markets, understand the wallets behind them, and turn real-time activity into something useful.
Quickstart
Your first request, explained.
API reference
Go straight to the endpoints.
Real-time streams
Build around what happens next.
Explore the data
See the free analytics dashboard.
Your data layer for prediction markets
Implyra brings market discovery, trading activity, wallet intelligence, and cross-venue comparisons into one analytics platform. Use REST to query a snapshot and server-sent events to follow what happens next.
This reference covers the core integration paths. The free dashboard lets you explore the experience; enterprise access connects the underlying data to your application.
Start with one request
Find active markets, request the metrics you need, and compare changes over eight supported windows. This example returns markets ordered by volume alongside their 24-hour price change.
curl --fail-with-body \
-X POST "$IMPLYRA_API_URL/markets/discover" \
-H "Content-Type: application/json" \
-d '{
"metrics": [
"volume",
"liquidity",
"price"
],
"deltas": [
{
"metric": "price",
"window": "24h",
"compare": "delta_abs"
}
],
"sort": {
"metric": "volume",
"direction": "desc"
},
"pagination": {
"limit": 20
}
}'Your REST URL, stream URL, and deployment access instructions are supplied during onboarding. Set IMPLYRA_API_URL to your assigned REST endpoint before running these examples.
Know what you are querying
PolymarketMarkets + walletsMarket discovery, trades, liquidity, price history, and wallet analytics. The /markets/discover examples in this guide use this dataset.
KalshiMarketsDedicated market endpoints and matched-market comparisons with Polymarket.
Cross-venuePolymarket ↔ KalshiMatched events, match confidence, and price divergence. Coverage and settlement terms may differ between matched markets.