Authentication

BizXEngine uses bearer token authentication. Every request must include a valid API key in the Authorization header.

Authorization header

Authorization: Bearer bxe_YOUR_API_KEY

API key types

TypePrefixScope
Secret keybxe_sk_Full API access. Use server-side only. Never expose in client code.
Publishable keybxe_pk_Read-only memory retrieval. Safe for client-side use.
Workspace keybxe_ws_Scoped to a single workspace. Useful for multi-tenant deployments.

Authentication errors

CodeMeaning
401Missing or malformed Authorization header.
403Valid key but insufficient permissions for this operation.
429Rate limit exceeded. See Rate Limits.