Rasa · Authentication Profile

Rasa Authentication

Authentication

Rasa secures its APIs with apiKey and http across 2 declared security schemes, as derived from its OpenAPI definitions.

CompanyAiConversational AIChatbotsVoice AssistantsNLULLMMachine LearningAgents
Methods: apiKey, http Schemes: 2 OAuth flows: API key in: query

Security Schemes

TokenAuth apiKey
· in: query (token)
JWT http
scheme: bearer

Source

Authentication Profile

Raw ↑
generated: '2026-07-20'
method: derived
source: openapi/rasa-http-api-openapi.yml
summary:
  types:
  - apiKey
  - http
  api_key_in:
  - query
schemes:
- name: TokenAuth
  type: apiKey
  in: query
  parameter: token
  description: A plaintext token to secure your server, specified at startup in the argument
    `--auth-token thisismysecret`
  sources:
  - openapi/rasa-http-api-openapi.yml
- name: JWT
  type: http
  scheme: bearer
  bearerFormat: JWT
  description: |-
    A JWT token that is signed using the JWT secret specified at startup in the argument `--jwt-secret thisismysecret`,
    using the `HS256` algorithm.

    The token's payload must contain an object under the `user` key,
    which in turn must contain the `username` and `role` attributes.
    The following is an example payload for a JWT token:

    ```json
    {
        "user": {
            "username": "<sender_id>",
            "ro
  sources:
  - openapi/rasa-http-api-openapi.yml