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

# Get service health status

> Returns the health status of the sync service.



## OpenAPI

````yaml /sync.openapi.json get /health
openapi: 3.1.0
info:
  title: Chroma Sync Service
  description: >-
    Chroma Sync Service provides APIs for managing data synchronization sources
    and invocations. The service supports syncing content from GitHub
    repositories, web scrape targets, and S3 buckets to Chroma collections.
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://sync.trychroma.com
security: []
paths:
  /health:
    get:
      tags:
        - System
      summary: Get service health status
      description: Returns the health status of the sync service.
      operationId: health_check
      responses:
        '200':
          description: Health check successful
        '503':
          description: Service is unavailable

````