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

# Get server version

> Returns the current Skyvern server version (git SHA for official builds).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/version
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/version:
    get:
      tags:
        - Server
      summary: Get server version
      description: >-
        Returns the current Skyvern server version (git SHA for official
        builds).
      operationId: get_version_v1_version_get
      responses:
        '200':
          description: Current server version
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Get Version V1 Version Get

````