Skip to main content
Prediction markets are platforms where users can trade on the outcome of future events. Allium provides prediction market data from decentralized blockchain-based platforms, enabling analysis of market activity, volumes, and participant behavior.

Supported Protocols

ProtocolTypePlatformData Coverage
PolymarketDecentralizedPolygonTrades, user actions, wallets
JupiterDecentralizedSolanaTrades (uses Kalshi as liquidity provider)
DFlowDecentralizedSolanaTrades (uses Kalshi as liquidity provider)

Available Tables

TableSchemaDescription
tradespolygon.predictionsPolymarket trade data on Polygon
user_actionspolygon.predictionsPolymarket user deposits, withdrawals, transfers
walletspolygon.predictionsPolymarket wallet creation events
tradessolana.predictionsJupiter + DFlow prediction market trades on Solana

Sample Queries

Query all trades on Polymarket in the last 30 days.
select
  event_name,
  project,
  protocol,
  maker,
  taker,
  price,
  usd_collateral_amount,
  block_timestamp,
  transaction_hash,
  unique_id
from polygon.predictions.trades
where block_timestamp >= current_timestamp - interval '30 days'
order by block_timestamp desc
LIMIT 100