Quickstart
Get started with Radar DaaS data.
Download Data
Dashboard (Easiest)
- Go to radar.matchstick.trading
- Sign in with your account
- Go to the Events page and scroll to Raw Data Access
- Click Download Parquet or Download Sample CSV
REST API
bash
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://radar.matchstick.trading/api/events?start=2025-01-01&end=2025-01-31"Load the Data
Python with pandas
python
import pandas as pd
df = pd.read_parquet('events.parquet')
print(df.head())Python with polars
python
import polars as pl
df = pl.read_parquet('events.parquet')
print(df.head())DuckDB
sql
SELECT * FROM 'events.parquet' LIMIT 10;Basic Analysis
Find the largest insider purchases:
python
import polars as pl
# Load data
df = pl.read_parquet('events.parquet')
# Filter to purchases, sort by value
top_purchases = (
df.filter(pl.col('transaction_code') == 'P')
.sort('total_value', descending=True)
.head(20)
.select(['issuer', 'reporting_owner', 'shares', 'total_value', 'filed_at'])
)
print(top_purchases)Free Sample
Download a free CSV sample without authentication:
bash
curl -o sample.csv \
"https://radar.matchstick.trading/api/downloads/events_sample.csv"Next Steps
- Data Schema - Field definitions
- Working with Parquet - Advanced parquet tips
- API Reference - Full API documentation