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

# info

> Returns basic system version information about the Ocient System and the HTTP Query API server.

You can use this endpoint to verify connectivity and to check compatible versions.



## OpenAPI

````yaml /openapi/generated-api-methods.json GET /v1/info
openapi: 3.1.0
info:
  title: Generated API methods
  version: 1.0.0
  description: Generated from imported ApiMethodV2 blocks.
servers:
  - url: https://{sql_node}
    variables:
      sql_node:
        default: sql_node
  - url: http://oc1-lts0:9090
security: []
paths:
  /v1/info:
    get:
      tags:
        - Ocient HTTP Query API
      summary: info
      description: >-
        Returns basic system version information about the Ocient System and the
        HTTP Query API server.


        You can use this endpoint to verify connectivity and to check compatible
        versions.
      operationId: getOcientHttpQueryApiInfo
      parameters: []
      responses:
        '200':
          description: Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  default_database:
                    type: string
                  openapi_version:
                    type: string
                  status:
                    type: object
                    properties:
                      reason:
                        type: string
                      sql_state:
                        type: string
                      vendor_code:
                        type: integer
              examples:
                response:
                  value:
                    default_database: system
                    openapi_version: 1.1.0
                    status:
                      vendor_code: 0
                      sql_state: '00000'
                      reason: The operation completed successfully
      servers:
        - url: https://{sql_node}
          variables:
            sql_node:
              default: sql_node
      x-codeSamples:
        - lang: curl
          label: curl
          source: |-
            curl -u 'admin@system:admin' \
                'https://my_sql_node.com/v1/info'  

````