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

# Get Information

> Get information about your EvolutionAPI



## OpenAPI

````yaml openapi-v2 GET /
openapi: 3.0.3
info:
  title: Evolution API
  version: 2.1.1
servers:
  - url: https://{server-url}
    variables:
      server-url:
        default: evolution-example
        description: The URL of your EvolutionAPI server
    description: Your instance domain
security: []
paths:
  /:
    get:
      summary: Get information about your EvolutionAPI
      description: Get information about your EvolutionAPI
      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 Evolution API, it is working!
                  version: 1.7.4
                  swagger: http://example.evolution-api.com/docs
                  manager: http://example.evolution-api.com/manager
                  documentation: https://doc.evolution-api.com
      deprecated: false

````