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

# Get Version

Returns the Spark API assembly version and build.


## OpenAPI

````yaml /openapi/spark.yaml get /Version
openapi: 3.0.1
info:
  title: Nayax Spark API
  description: RemoteStart V2
  version: v2
servers:
  - url: https://{domain}/api
    variables:
      domain:
        default: nayax-spark-dmz.nayax.com
        description: >-
          Your Nayax-assigned domain (e.g., nayax-spark-dmz.nayax.com). Nayax
          provides a QA domain during sandbox onboarding and a production domain
          after certification.
security: []
tags:
  - name: Transactions
paths:
  /Version:
    get:
      tags:
        - Transactions
      summary: Get Version
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VersionResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/VersionResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/VersionResponse'
components:
  schemas:
    VersionResponse:
      type: object
      properties:
        ProductVersion:
          type: string
          nullable: false
        Copyright:
          type: string
          nullable: false
        ApiVersion:
          type: string
          nullable: true
      additionalProperties: false

````