Instant REST APIs for your PostgreSQL tables
products
table, you immediately get:
GET /api/database/records/products
- List productsPOST /api/database/records/products
- Create productsPATCH /api/database/records/products?id=eq.123
- Update productDELETE /api/database/records/products?id=eq.123
- Delete productSTRING
- Text of any lengthINTEGER
- Whole numbersFLOAT
- Decimal numbersBOOLEAN
- True/falseUUID
- Unique identifiersDATETIME
- Timestamps with timezoneJSON
- Structured data_
are system-managed:
_user
- User accounts (read-only via database API)_account
- OAuth provider accounts linked to users_storage
- File metadata (system only)_storage_buckets
- Storage bucket configuration_config
- System configuration_metadata
- System metadata/api/auth/*
. The database API can only read users._user
table to link data to users:
[{...}]
even for single records.
Prefer Header - Add Prefer: return=representation
to see created/updated data.
Idempotent Deletes - DELETE succeeds even if the record doesn’t exist.