> ## Documentation Index
> Fetch the complete documentation index at: https://rasa.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Information about your Rasa Pro License

> Returns the license information about your Rasa Pro License



## OpenAPI

````yaml /openapi/pro.yaml get /license
openapi: 3.0.1
info:
  title: Rasa - Server Endpoints
  version: 1.0.0
  description: >-
    The Rasa server provides endpoints to retrieve trackers of conversations as
    well as endpoints to modify them. Additionally, endpoints for training and
    testing models are provided.
servers:
  - url: http://localhost:5005
    description: Local development server
security: []
paths:
  /license:
    get:
      tags:
        - Server Information
      summary: Information about your Rasa Pro License
      description: Returns the license information about your Rasa Pro License
      operationId: getLicense
      responses:
        '200':
          description: Rasa Pro License Information
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique identifier for the license
                  company:
                    type: string
                    description: Name of the company the license is issued to
                  scope:
                    type: string
                    description: Scope of the license
                  email:
                    type: string
                    description: Email associated with the license
                  expires:
                    type: string
                    format: date-time
                    description: Expiry date of the license in ISO 8601 format
              example:
                id: u5fn8888-e213-4c12-9542-0baslfdkjas
                company: acme
                scope: rasa:pro rasa:voice
                email: acme@email.com
                expires: '2026-01-01T00:00:00+00:00'

````