PondPilot
The main data exploration app. Analyze local and remote data with SQL, powered by DuckDB-WASM. Zero setup, 100% client-side.
Your data never leaves your device. All processing happens in your browser.
No installation, no server, no configuration. Just open and start exploring.
Full DuckDB SQL support with AI assistance for query generation.
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.
FlowScope
SQL lineage engine that analyzes queries to produce detailed lineage graphs showing how tables and columns flow through transformations.
Widget
Transform static SQL code blocks into interactive, browser-based SQL editors. Perfect for documentation and tutorials.
CORS Proxy
Transparent CORS proxy service enabling browser-based access to remote databases and files without CORS headers.
Get started in seconds - just open PondPilot and run your first query:
-- Load a CSV file directly from URLSELECT * FROM 'https://example.com/data.csv' LIMIT 10;
-- Or analyze local files by dragging them into the appSELECT column_name, COUNT(*) as countFROM my_data.parquetGROUP BY column_nameORDER BY count DESC;