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

# Get Information

> Get information about your l2msg Whatsapp API



## OpenAPI

````yaml openapi-whatsapp GET /
openapi: 3.0.3
info:
  title: l2msg API
  version: 2.1.1
servers:
  - url: https://api.l2msg.com/whatsapp
security: []
paths:
  /:
    get:
      summary: Get information about your l2msg Whatsapp API
      description: Get information about your l2msg Whatsapp API
      operationId: getEvoInfo
      parameters:
        - name: instance
          in: path
          required: true
          description: ID of the instance to connect
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    description: The HTTP status of the response
                  message:
                    type: string
                    description: Descriptive message about the current state of the API
                  version:
                    type: string
                    description: The current version of the API
                  swagger:
                    type: string
                    description: URL to the API's Swagger documentation
                  manager:
                    type: string
                    description: URL to the API manager
                  documentation:
                    type: string
                    description: URL to the detailed API documentation
                example:
                  status: 200
                  message: Welcome to the l2msg Whatsapp API, it is working!
                  version: 2.1.1
                  documentation: https://docs.l2msg.com
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: Your authorization key header

````