Skip to main content
Zite has two REST APIs. Both authenticate with the same Bearer API key, and both act as you — they reach only the workspaces you have access to.

Database API

Read, write, and query the records in your workspace database over REST or the JavaScript SDK.

Build API

Create workspaces, edit app code, and publish deployments — the REST equivalent of the Zite MCP build tools.

Get an API key

Generate a key in Developer settings, then send it as a Bearer token on every request:

Database API

Already have data in Zite and just need to reach it from your own code? Skip the agent and app framework — talk to your tables directly. Base URL:
Open a database in the dashboard to find its IDs in the URL (app.zite.com/database/{databaseId}/{tableId}/…), then call it with the JavaScript SDK or plain HTTP:
Full reference: Database API · JavaScript SDK · Field types.

Build API

Create workspaces, edit app code, and ship deployments from CI, a script, or your own agent. Base URL:
Creating a workspace — a database plus the apps built on it — is one call:
From there you open a build session, create an app and edit its files, commit to kick off a build, then publish. Full reference: Build API · Build sessions · Deploy & logs.