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

# Get server version



## OpenAPI

````yaml /openapi.yaml get /api/v1/version
openapi: 3.0.3
info:
  title: Datris API
  description: >
    REST API for the Datris AI Data Platform. Ingest, validate, transform,
    store, and retrieve data.


    For AI agent integration, use the [MCP
    Server](https://docs.datris.ai/mcp-server) instead.
  version: 1.11.3
  contact:
    name: Datris
    url: https://datris.ai
  license:
    name: Apache 2.0
servers:
  - url: http://localhost:8080
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /api/v1/version:
    get:
      tags:
        - Status
      summary: Get server version
      responses:
        '200':
          description: Server version
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VersionResponse'
        '500':
          description: Error
components:
  schemas:
    VersionResponse:
      type: object
      properties:
        version:
          type: string
        environment:
          type: string
          description: >-
            Environment name (e.g., oss for self-hosted, or tenant prefix for
            managed hosting)
        multiTenant:
          type: string
          description: Whether the server is running in multi-tenant mode (true/false)
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Optional API key for authentication (enabled via application.yaml)

````