Open source · Apache 2.0

Query every datasource. As one.

Connect any data source, query across all of them with a single command, and get instant insights that used to take hours of manual work.

No signup required · 2-minute setup

kvatch — zsh
# install and run your first query
$ brew install kvatch
$ kvatch init
$ kvatch query --plan analytics.yaml
✓ 2-minute setup · no signup required
PostgreSQL
Google Sheets
CSV
Kvatch
-- one query, every source joined
SELECT c.name, s.region, f.total
FROM postgres.customers c
JOIN sheets.sales s
ON s.customer_id = c.id
JOIN csv.finance f
ON f.customer_id = c.id