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

# Get service details

> Returns detailed information for a specific service by ID.



## OpenAPI

````yaml /connectors/openapi/brunkhorst-openapi.json get /api/services/{service_id}
openapi: 3.1.0
info:
  title: Brunkhorst Connector
  description: >

    ## Zeitmechanik Booking Integration


    This connector provides a REST API for the Zeitmechanik workshop booking
    system used by Autohaus Brunkhorst.


    ### Features


    - **Service Catalog**: Browse available workshop services (inspections,
    maintenance, repairs)

    - **Availability Check**: Find available days and time slots for selected
    services

    - **Appointment Booking**: Two-step reservation and confirmation flow

    - **Customer Lookup**: Search existing customers by phone, name, or license
    plate


    ### Booking Flow


    1. **Get Services** → List available services and select one or more

    2. **Check Days** → Get available days for the selected services (filtered
    to 14+ days out)

    3. **Check Times** → Get available time slots for a specific day

    4. **Reserve** → Reserve a time slot (holds for ~10 minutes)

    5. **Confirm** → Complete booking with customer and vehicle details


    ### Authentication


    All endpoints (except `/health` and `/ready`) require an `X-API-Key` header.
    Requests may also be restricted by IP whitelist.
  contact:
    name: AICO Engineering
    url: https://aicoflow.com/
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://brunkhorst.connectors.aicoflow.com
    description: Production
  - url: http://localhost:8101
    description: Local development
security:
  - ApiKeyAuth: []
tags:
  - name: Services
    description: >-
      Service catalog operations. Browse available workshop services like
      inspections, maintenance, and repairs.
  - name: Availability
    description: >-
      Check appointment availability. Find open days and time slots for selected
      services.
  - name: Booking
    description: >-
      Appointment booking flow. Reserve time slots and confirm appointments with
      customer/vehicle details.
  - name: Lookup
    description: >-
      Customer and vehicle lookup. Search existing records by phone, name, or
      license plate.
  - name: Health
    description: Service health and readiness checks.
paths:
  /api/services/{service_id}:
    get:
      tags:
        - Services
      summary: Get service details
      description: Returns detailed information for a specific service by ID.
      operationId: get_service_api_services__service_id__get
      parameters:
        - name: service_id
          in: path
          required: true
          schema:
            type: string
            title: Service Id
      responses:
        '200':
          description: Service details including name, category, and duration
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````