These are unedited screenshots of the actual dashboard, running real project data. What you see is what you sign into.
Custom endpoints
This is a real endpoint being edited: a GET route that queries articles, expands each one's author, and reshapes the result with an expression — then answers with exactly the JSON the site wants. Steps run top to bottom; every field has an inline hint; Test run executes the draft before you save. CORS, caching and rate limits are checkboxes, not infrastructure projects.
Endpoints guide →
Your API surface
Endpoints group into named sections — site data, account, admin — each showing its method, who may call it, and a copyable URL. Every invocation is logged step by step, so a failing route reads as “stopped here, having computed this” rather than a mystery.
Endpoints guide →
Schemas & records
Schemas declare typed fields, relations and components; the server enforces them on every write — required fields, unique values backed by real indexes, relations that must point at records that exist. Every edit writes history, and each schema ships a generated REST API with filtering, sorting and relation expansion.
Schemas & records guide →
Auth schemas
Give your site registration, login, email verification and password reset without building any of it. Signed-in visitors can call endpoints that answer personally — a query filtered to the caller returns only their own records.
Auth schemas guide →
A workspace takes about a minute — attach your MongoDB and the screenshots above become your screens.
Create your workspace