Skip to content
Polly - PondPilot mascot

PondPilot Documentation

Privacy-first data exploration tools that run entirely in your browser.
🔒

Privacy First

Your data never leaves your device. All processing happens in your browser.

Zero Setup

No installation, no server, no configuration. Just open and start exploring.

🔍

Powerful SQL

Full DuckDB SQL support with AI assistance for query generation.

💻

Open Source

All tools in the ecosystem are open source and free to use.

PondPilot

The main data exploration app. Analyze local and remote data with SQL, powered by DuckDB-WASM. Zero setup, 100% client-side.

Learn more →

FlowScope

SQL lineage engine that analyzes queries to produce detailed lineage graphs showing how tables and columns flow through transformations.

Learn more →

Widget

Transform static SQL code blocks into interactive, browser-based SQL editors. Perfect for documentation and tutorials.

Learn more →

CORS Proxy

Transparent CORS proxy service enabling browser-based access to remote databases and files without CORS headers.

Learn more →

Get started in seconds - just open PondPilot and run your first query:

-- Load a CSV file directly from URL
SELECT * FROM 'https://example.com/data.csv' LIMIT 10;
-- Or analyze local files by dragging them into the app
SELECT column_name, COUNT(*) as count
FROM my_data.parquet
GROUP BY column_name
ORDER BY count DESC;