> ## 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 for every deployed service

> The API's own build metadata plus one entry per downstream Python service, so on-prem customers and support can see the full component inventory of a deployment at a glance. A downstream service being down never fails this call; it is reported with `status: unreachable` instead. Requires authentication; restricted to admins and organizations with an enterprise subscription, same rule as `GET /build-info`.



## OpenAPI

````yaml https://api.galtea.ai/openapi.json get /build-info/services
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/services:
    get:
      tags: []
      summary: Build info for every deployed service
      description: >-
        The API's own build metadata plus one entry per downstream Python
        service, so on-prem customers and support can see the full component
        inventory of a deployment at a glance. A downstream service being down
        never fails this call; it is reported with `status: unreachable`
        instead. Requires authentication; restricted to admins and organizations
        with an enterprise subscription, same rule as `GET /build-info`.
      operationId: buildInfoServices
      responses:
        '200':
          description: Deployed build metadata for the API and every downstream service
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuildInfoServices'
        '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:
    BuildInfoServices:
      type: object
      properties:
        api:
          $ref: '#/components/schemas/BuildInfo'
        services:
          type: array
          items:
            $ref: '#/components/schemas/ServiceBuildInfo'
      required:
        - api
        - services
    Error:
      type: object
      properties:
        error:
          type: string
          example: Error type
        message:
          type: string
          example: Error message description
    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
    ServiceBuildInfo:
      type: object
      properties:
        name:
          type: string
          description: Downstream service identifier, e.g. `evaluator`, `report-generator`.
          example: evaluator
        status:
          type: string
          enum:
            - ok
            - unreachable
            - not_implemented
            - not_configured
          description: >-
            `ok`: build info returned normally. `unreachable`: the service did
            not respond in time, the request failed, or it answered with a body
            that does not match the build-info shape. `not_implemented`: the
            service answered 404, meaning it has not shipped its own
            `/build-info` route yet. `not_configured`: this deployment has no
            URL set for the service (only possible for services not validated at
            startup).
          example: ok
        version:
          type: string
          description: Only present when `status` is `ok`.
          example: 4.39.0
        commit:
          type: string
          description: Only present when `status` is `ok`.
        buildDate:
          type: string
          description: Only present when `status` is `ok`.
      required:
        - name
        - status
  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-...`.

````