
Market Data
kalshi
Kalshi Prediction Markets is a read-only integration that surfaces exchange-grade prediction market data and portfolio views for research, monitoring, and idea generation.
Overview
Kalshi Prediction Markets is a read-only integration that surfaces exchange-grade prediction market data and portfolio views for research, monitoring, and idea generation.
Kalshi Prediction Markets is a read-only integration that surfaces exchange-grade prediction market data and portfolio views for research, monitoring, and idea generation. Core features include browsing active events and markets by category, retrieving live prices, volumes and orderbook depth, and viewing authenticated portfolio positions and P&L (requires RSA-signed API credentials). Built-in opportunity analysis flags high-certainty, high-payoff trades using thresholds (e.g., price ≥85¢ or ≤15¢ YES), expected-value calculations, minimum return filters (≥10%) and liquidity checks to ensure feasible position sizing. Use it for event-driven research, scouting asymmetric bets, monitoring exposure, and feeding signal generation into trading workflows. Setup is lightweight (pip install requests cryptography) and supports scripted commands for market discovery, search, detailed market views, and portfolio inspection.
Skill.md
How this skill works
Kalshi Prediction Markets is a read-only integration that surfaces exchange-grade prediction market data and portfolio views for research, monitoring, and idea generation.
Kalshi Prediction Markets
Read-only integration with Kalshi's prediction market API.
Capabilities
- Browse markets: List active events and markets by category
- Market analysis: Get prices, volumes, orderbook depth
- Portfolio view: Check positions and P&L (requires API key)
- Trade recommendations: Find high-certainty, high-payoff opportunities
Setup
Install dependencies:
pip install requests cryptography
For portfolio access (RSA key signing required):
- Go to kalshi.com/account/profile
- Create new API key → save the Key ID and download the private key
- Store credentials:
mkdir -p ~/.kalshi
mv ~/Downloads/your-key-file.txt ~/.kalshi/private_key.pem
chmod 600 ~/.kalshi/private_key.pem
- Create
~/.kalshi/credentials.json:
{
"api_key_id": "your-key-id-here",
"private_key_path": "~/.kalshi/private_key.pem"
}
Or run interactive setup:
python scripts/kalshi_portfolio.py setup
Scripts
Market Data (No Auth Required)
# List trending markets
python scripts/kalshi_markets.py trending
# Search markets by query
python scripts/kalshi_markets.py search "bitcoin"
# Get specific market details
python scripts/kalshi_markets.py market TICKER
# Find high-value opportunities
python scripts/kalshi_markets.py opportunities
Portfolio (Auth Required)
# View positions
python scripts/kalshi_portfolio.py positions
# View balance
python scripts/kalshi_portfolio.py balance
# Trade history
python scripts/kalshi_portfolio.py history
Opportunity Analysis
The opportunities command identifies markets where:
- High certainty: Price ≥85¢ YES or ≤15¢ YES (implies 85%+ confidence)
- Meaningful payoff: Potential return ≥10% on capital
- Sufficient liquidity: Orderbook depth supports reasonable position size
Formula: expected_value = probability * payoff - (1 - probability) * cost
A good opportunity has: EV / cost > 0.1 (10%+ expected return)
Categories
Kalshi markets span:
- Politics & Elections
- Economics (Fed rates, inflation, GDP)
- Weather & Climate
- Finance (stock prices, crypto)
- Entertainment & Sports
- Science & Tech
API Reference
See references/api.md for endpoint details.
Important Notes
- This skill is READ-ONLY — no trade execution
- Public endpoints don't require authentication
- Portfolio/balance requires API credentials
- Markets settle in cents (100¢ = $1)
- All times in UTC
Best used for
When to use it
Kalshi Prediction Markets is a read-only integration that surfaces exchange-grade prediction market data and portfolio views for research, monitoring, and idea generation.

01 · PRE-MEETING
Prepare a decision brief
Turn scattered evidence into a structured case before an investment committee meeting.

02 · TEAM WORKFLOW
Standardize handoffs
Create consistent research outputs across analysts, portfolio managers, and agents.

03 · LIVE UPDATE
Refresh the thesis
Update scenarios after a new catalyst, KPI release, or earnings result.
Community notes
Built to improve with use.
随着 Skill 被使用与评审,反馈将展示在这里。
Discover more
Related skills
View allstrykr-prism
Strykr PRISM is a unified, real-time financial data API designed for AI agents, trading bots, and fintech applications. It provides canonical asset resolution (handles symbols, aliases, and…
gmgn-market
gmgn-market is a CLI-driven Skill for retrieving crypto and meme-token market data: K-line (candlestick/OHLCV) charts, trending token rankings by USD volume, Trenches token lists, and newly launched…
gmgn-portfolio
The gmgn-portfolio Skill uses the gmgn-cli to analyze crypto wallets on Solana, BSC, and Base, returning holdings, token balances, realized and unrealized P&L, portfolio statistics, trade history,…