holo_xxxxxxxx. Send yours as a Bearer token in the
Authorization header on every request:12curl https://holocron.so/api/v0/projects \ -H "Authorization: Bearer holo_xxxxxxxx"
/api/v0/projects, /api/v0/me), the deploy pipeline
(/api/v0/deployments), and the AI chat gateway (POST /api/chat).
A key only ever acts on its own project; it cannot read or modify other projects
in your org. Creating new projects and managing API keys requires signing in
with the CLI or dashboard.holo_xxx key.1npx -y @holocron.so/cli login
1npx -y @holocron.so/cli projects create --name "My Docs"
keys create without --project
to pick from a list, or pass the project ID directly:1npx -y @holocron.so/cli keys create --name production --project <projectId>
npx -y @holocron.so/cli keys list and revoke one with
npx -y @holocron.so/cli keys delete <keyId>.production), and
copy the holo_xxx value. The key is scoped to that project automatically.1234export HOLOCRON_KEY=holo_xxxxxxxx curl https://holocron.so/api/v0/projects \ -H "Authorization: Bearer $HOLOCRON_KEY"
HOLOCRON_KEY environment variable is also what the CLI and CI use to
deploy without an interactive login. See Deploy to Holocron
for the full deploy flow.