The definitive open-source index of tools, platforms, and analytics for the prediction market ecosystem.
PredictionTools.directory aims to be the central hub for discovering the rapidly growing ecosystem of prediction market tools. From trading terminals and analytics dashboards to news aggregators and automation bots, we track it all.
The directory is built with SvelteKit and designed to be fast, responsive, and community-driven.
- Framework: SvelteKit
- Styling: Tailwind CSS
- Deployment: Firebase Hosting (Static)
- Data: Static JSON (
src/lib/data/tools.json)
We welcome contributions from the community!
The fastest way to get a tool added is to open a Pull Request.
- Fork the repository.
- Edit
src/lib/data/tools.json. - Add your tool object to the array (see schema below).
- Submit a Pull Request.
Alternatively, you can Open an Issue and request a tool be added.
{
"id": "tool-slug",
"name": "Tool Name",
"slug": "tool-slug",
"shortDescription": "One-line summary for cards (max 120 chars)",
"description": "2-3 sentence description of the tool",
"category": "Platforms | Trading Terminals | AI Agents & Bots | Market Intelligence | Analysis Tools | Information & OSINT | Infrastructure & APIs",
"url": "https://...",
"xUrl": "https://x.com/handle",
"xHandle": "@handle",
"websiteName": "Human Readable Name",
"tags": ["Tag1", "Tag2"],
"pricing": "Free | Freemium | Paid | Custom",
"pricingDetails": "Freeform description of the pricing model",
"access": "Public | Waitlist | Invite-only",
"status": "active | inactive | acquired | shut-down",
"acquiredBy": "tool-id (if acquired)",
"addedDate": "2026-03-01",
"lastVerified": "2026-05-01",
"blockchain": ["Polygon", "Solana"],
"supportedMarkets": ["Polymarket", "Kalshi"],
"platform": ["Web", "iOS", "Android", "Telegram", "Discord", "Twitter"],
"features": ["Feature One", "Feature Two"],
"isPromoted": false
}# Clone the repo
git clone https://github.com/tgel0/prediction-tools-directory.git
# Install dependencies
npm install
# Start dev server
npm run dev