Getting Started
Access Files
Log into app.probalytics.io and navigate to the Files section.Select Data
Use the interface to choose:- Platform: Polymarket or Kalshi
- Entity type: Markets or Trades
- Frequency: Available exports depend on entity:
- Markets: Daily, Weekly, Monthly
- Trades: Daily, Weekly
- File: Browse available exports in the file tree

File Formats
All files are automatically gzipped (.gz). Choose your format based on use case:
CSV
- Best for: Excel, data analysis, simple processing
- Field headers included
- Standard CSV formatting
- Best for: Analytics queries, data science, large datasets
- Columnar format, highly compressed
- Native support: Python (pandas, polars), R, Go, Java
- Best performance for analytical queries
- Best for: Integration with APIs, JavaScript/Node.js
- One JSON object per line
- Standard JSON formatting
File Naming
Files follow this pattern:- Daily: 00:15 UTC (all entities)
- Weekly: Mondays at 00:15 UTC (Markets and Trades)
- Monthly: First day of month at 00:15 UTC (Markets only)
Parsing Examples
Choose examples based on your use case and language. All formats can be decompressed on-the-fly.Python
Load and Explore with Pandas
Best for quick analysis and exploration.Load and Explore with Polars
Faster for large files, better performance.Query and Filter with Polars
Efficient filtering with lazy evaluation.CSV or JSONL - Standard Library
Lightweight parsing without dependencies.JavaScript / Node.js
Load and Explore
Stream JSONL
Filter and Aggregate
Common Workflows
Weekly Export Analysis
Download the weekly trade export for comprehensive weekly analysis:Monthly Market Snapshot
Get a complete monthly snapshot of markets:Stream JSONL Records
Process JSONL records line-by-line:Data Schema
Files contain the same data as REST API responses. Refer to the REST API Reference for:- Complete field definitions
- Data types and formats
- Example values