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

# Build info

> Deployed build metadata (version, commit, build date), so on-prem customers can compare their deployed version with the SaaS. Requires authentication; restricted to admins and organizations with an enterprise subscription.



## OpenAPI

````yaml https://api.galtea.ai/openapi.json get /build-info
openapi: 3.0.0
info:
  version: 1.0.0
  title: Product Management Service API
  description: API documentation for Product Management Service
  contact:
    name: Galtea AI
servers:
  - url: https://api.galtea.ai
security:
  - bearerAuth: []
tags: []
externalDocs:
  description: Galtea Platform Documentation
  url: https://docs.galtea.ai
paths:
  /build-info:
    get:
      tags: []
      summary: Build info
      description: >-
        Deployed build metadata (version, commit, build date), so on-prem
        customers can compare their deployed version with the SaaS. Requires
        authentication; restricted to admins and organizations with an
        enterprise subscription.
      operationId: buildInfo
      responses:
        '200':
          description: Deployed build metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuildInfo'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    BuildInfo:
      type: object
      properties:
        version:
          type: string
          description: >-
            Platform release version this service's running image was built for,
            baked in at build time. `dev` when unset. A service not rebuilt in a
            release reports its previous version.
          example: 4.39.0
        commit:
          type: string
          description: Git commit the running image was built from.
          example: a648b3218e1c2f3a4b5c6d7e8f9a0b1c2d3e4f5a
        buildDate:
          type: string
          description: When the running image was built.
          example: '2026-07-27T00:00:00.000Z'
      required:
        - version
        - commit
        - buildDate
    Error:
      type: object
      properties:
        error:
          type: string
          example: Error type
        message:
          type: string
          example: Error message description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authorization. Pass your API key in the Authorization header as
        a Bearer token. Both new (`gsk_*`) and legacy (`gsk-`) API keys are
        accepted, e.g. `Authorization: Bearer gsk_...` or `Authorization: Bearer
        gsk-...`.

````