Alpha Release — All AI runs locally

The AI-Powered
Database Platform

Generate data with AI, write SQL with natural language, auto-create REST APIs, import CSVs, and visualize results — all with a local AI that keeps your data private.

HxDB — AI Data Generator
// Generate data with a single prompt
prompt: "Generate 500 users with name, email, age, country"
// Streaming output...
id name email age country
1 Alice Chen alice@ex.com 28 Japan
2 Bob Silva bob@ex.com 34 Brazil
3 Clara Kim clara@ex.com 25 Korea
... 497 more rows
Saved to PostgreSQL as users_2025 — 1.2s
Web Crawling

Turn any webpage into
structured data

Point HxDB at any URL and AI extracts the data into clean, structured rows and columns. Product listings, directories, pricing tables — instantly saved to PostgreSQL.

Paste a URL — AI does the rest
Auto-detects columns and data types
One-click save to PostgreSQL
HxDB — Web Crawl
// Crawl a product listing page
url: "https://store.example.com/laptops"
prompt: "Extract product name, price, rating, specs"
// AI extracts structured data...
product price rating cpu
MacBook Pro 16" $2,499 4.8 M4 Pro
ThinkPad X1 $1,849 4.6 i7-14700
Dell XPS 15 $1,699 4.5 i7-13700H
... 24 more products
Saved to PostgreSQL as laptops_2025 — 3.8s

Everything you need to manage data

A complete AI-powered toolkit for database management, data generation, and API creation.

SQL Editor with AI

Write SQL manually or describe what you need in plain English. AI generates context-aware queries using your schema.

AI Data Generator

Generate realistic datasets from prompts. Four modes: AI generation, web crawling, image extraction, and CSV import.

Dataset Management

Supabase-style table viewer with inline editing, add rows/columns, and AI Fill to auto-populate realistic data.

Charts & Visualization

Instantly visualize query results with Bar, Line, Pie, and Doughnut charts. No configuration needed.

REST API Auto-Generation

Save any SQL query as a named REST endpoint. Instantly turn analytics into live APIs with standardized JSON responses.

CSV Import

Import 10,000+ rows from CSV files with preview, auto-detection of delimiters, column types, and headers.

Natural Language Filtering

Type "show me users older than 30" and AI converts it to SQL WHERE clauses automatically.

Web Crawling

Point to any URL and AI extracts structured data. Turn web pages into database tables automatically.

Vision / Image Extraction

Upload receipts, invoices, or table images. AI extracts data into editable rows and columns instantly.

Built for developers

Query via REST API, integrate with React or Vue, or use the SQL editor directly.

GET /api/query?sql=SELECT * FROM users LIMIT 3
{
"Success": true,
"Columns": ["id", "name", "email"],
"Rows": [
{ "id": 1, "name": "Alice", "email": "alice@example.com" },
{ "id": 2, "name": "Bob", "email": "bob@example.com" }
],
"ExecutionTimeMs": 4.2
}
TSX hxdb-react
import { useHxDB } from 'hxdb-react'
export default function Users() {
const { data, loading } = useHxDB({
sql: 'SELECT * FROM users LIMIT 10'
})
if (loading) return <p>Loading...</p>
return (
<table>
{data?.Rows.map(row => (
<tr key={row.id}>
<td>{row.name}</td>
</tr>
))}
</table>
)
}

Built on proven technology

Production-ready stack designed for reliability, performance, and data privacy.

Blazor Server

.NET 10

Real-time UI with SignalR. Server-side rendering with instant updates.

PostgreSQL

Full SQL

Battle-tested relational database with complete SQL support.

Redis

In-memory

Session history, saved queries, and high-performance caching layer.

Ollama

Local AI

Local LLM inference with Gemma, LLaMA, and vision models. No cloud APIs.

Deployed on Kubo

HxDB runs on Kubo — a Kubernetes management platform that simplifies cluster deployment, application scaling, and infrastructure operations. Also built by Hexabase.

Visit Kubo

Your data never leaves your server

All AI processing runs locally via Ollama. No external API calls, no usage-based billing, no data privacy concerns. Complete control over your data.

Ready to get started?

Start generating data, writing queries, and building APIs with AI — in minutes.

Start Building

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.