PostgreSQL · Plain English · Bring your own AI key

Bring your own AI key.
Talk to your database in plain English.

Connect your PostgreSQL database, ask questions the way you would ask a teammate, and get back SQL, charts, and plain-English summaries — powered by your own OpenAI, Claude, or Gemini key.

Your API key. Your data. Nothing stored.

Works with PostgreSQL · BYOK — OpenAI, Claude, Gemini · No data stored on our servers

Watch it answer

Ask a question the way you would ask a teammate. Datagini writes the SQL, runs it, and hands back a chart, table, or summary.

datagini.satishhebbal.design/project/acme-prod
Gini
Reading your schema...

Revenue is up 22% over the last 6 months, with the sharpest jump in May.

6 rows
ChartTable
Jan
Feb
Mar
Apr
May
Jun
Generated SQL
SELECT date_trunc('month', created_at) AS month,
       SUM(amount) AS revenue
FROM orders
GROUP BY 1
ORDER BY 1;

Ask in English, get real SQL

Type a question. Datagini writes the query, runs it, and shows you the result — table, chart, or summary. No SQL knowledge needed.

Your keys. Your data.

Plug in your own OpenAI, Claude, or Gemini API key. Nothing is proxied through our servers. Full control, zero lock-in.

OpenAIClaudeGeminiMistralDeepSeekQwen

Understand your schema instantly

Visual ER diagram of your database — tables, columns, foreign keys, and relationships — generated automatically on connect.

Your schema. Laid out clearly.

Every table, column, and foreign key — mapped into an interactive diagram the moment you connect.

customers
iduuid
nametext
emailtext
created_attimestamptz
orders
iduuid
customer_iduuid
amountnumeric
created_attimestamptz
order_items
iduuid
order_iduuid
product_iduuid
quantityint4