Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.allium.so/llms.txt

Use this file to discover all available pages before exploring further.

Prediction markets on Solana enable users to trade on the outcome of real-world events using Kalshi as the underlying liquidity provider. Allium provides prediction market trade data from Jupiter and DFlow on Solana.

Prediction Market Data Coverage

PlatformStatusProtocolNotes
JupiterActiveKalshiFull trade history with Kalshi market metadata
DFlowActiveKalshiTrade data with mint-to-ticker mappings from DFlow’s public API

Available Tables

TableDescription
solana.predictions.tradesUnified prediction market trades (Jupiter + DFlow)

Sample Queries

Query recent trades on Solana prediction markets:
select
  project,
  protocol,
  timestamp,
  ticker,
  user_address,
  num_contracts,
  action,
  taker_side,
  yes_price,
  no_price,
  taker_price,
  venue_fee_usd
from solana.predictions.trades
where trade_date >= current_date - interval '7 days'
order by timestamp desc
limit 100