Developers

If you can talk to PostgreSQL, you can talk to FiscalDB.

Your drivers don't change. Connect over the wire protocols you already use, or over REST and gRPC. Every endpoint is JWT-authenticated and RBAC-scoped.

Getting access

Access to FiscalDB binaries, container images, and SDKs is granted after license activation. Customers receive a signed download URL and a license key (FISCALDB_LICENSE_KEY) that the server validates on startup.

psqlfiscaldb
$ psql -h fiscaldb -p 5432 -U admin -d fiscal
fiscal=> SELECT external_id, country, status
         FROM invoices WHERE tenant_id = 'acme'
         AND country = 'MX' LIMIT 5;
FiscalSQL

Cheatsheet

fiscalsqlsql
SHOW DATABASES
SHOW TENANTS
SHOW WAL STATUS
SHOW SEGMENTS
CREATE TENANT acme
SELECT * FROM invoices WHERE tenant_id = 'acme' AND country = 'MX'

Read the full API reference.