Which operations require authentication
Passing the token
Include the bearer token in theAuthorization header on every authenticated request.
Token format
Bearer tokens are:- Opaque — clients must not parse or decode the token value
- Registry-local — tokens issued by one bibliotheca are not valid on another
- Resource-scoped — a token may be authorized for a specific scope, volume, or release; the bibliotheca enforces the scope boundary
Error responses
If the token is missing, malformed, unknown, expired, or revoked, the bibliotheca returns401 Unauthorized:
403 Forbidden:
Authenticated request example
The following example creates a release upload intent for a scoped volume:Token issuance — how you register, log in, or generate API tokens — is bibliotheca-local and is
not standardized in Agent Volumes v0.1.