How integrations work
Everything your app can call falls into one of three buckets:The database is not an “integration” you configure — it’s the workspace itself, reached through the runtime.
Supported services
Zite supports 24 connectable third-party services:Secrets
Secrets are never written in code. They’re provided to your workflows as environment variables:- Connected integrations expose a token like
ZITE_SLACK_ACCESS_TOKENorZITE_OPENAI_ACCESS_TOKEN. - Your own secrets, added in the editor, are prefixed
ZITE_and read asprocess.env.ZITE_<KEY>.
setup_integration) to connect the service in Zite; once connected, the token is
available to your workflows.
Environments
TheZITE_ENV variable selects the environment your workflows run against:
process.env.ZITE_APP_URL is always set to your app’s public URL — use it for building links instead of
hardcoding a domain.
For result-set caps, execution timeouts, and payload sizes, see Platform limits.