Skip to main content
AgentOS reads the JWT from the Authorization: Bearer <token> header on every request. Tokens can come from the AgentOS control plane or your own backend.

Token Structure

Your JWT tokens should include:

Example Tokens

Read-only access:
Run a specific agent:
Admin access:
See Scopes for the full list.

Sending Tokens

Send the token in the Authorization header:
JWTs identify human callers. For machine callers, mint a service account token instead. agno tokens create <name> returns an agno_pat_... token that you send in the same Authorization header.

Next Steps