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

# Health check

> Returns a minimal response proving the WoopSocial API is reachable.



## OpenAPI

````yaml /openapi.yaml get /health
openapi: 3.1.0
info:
  title: WoopSocial API
  version: 1.0.0
  summary: API for WoopSocial integrations.
  description: >
    This is the public-facing OpenAPI contract for WoopSocial. It supports
    scheduling posts for various social media platforms such as Facebook,
    Instagram, LinkedIn, LinkedIn Pages, Pinterest, Threads, TikTok, X (formerly
    Twitter) and YouTube.
servers:
  - url: https://api.woopsocial.com/v1
    description: WoopSocial API URL.
  - url: http://localhost:9123/api/external/v1
    description: Local WoopSocial API URL.
security: []
tags:
  - name: Posts
    description: Post scheduling endpoints.
  - name: Projects
    description: Project discovery endpoints.
  - name: Social Accounts
    description: Connected social account discovery endpoints.
  - name: Media
    description: Media upload endpoints.
  - name: Webhooks
    description: Webhook endpoint management.
  - name: Health
    description: Basic connectivity endpoints.
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns a minimal response proving the WoopSocial API is reachable.
      operationId: getHealth
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
      security:
        - ApiKey: []
components:
  schemas:
    HealthResponse:
      type: object
      additionalProperties: false
      required:
        - message
        - timestamp
        - version
      properties:
        message:
          type: string
          description: Human-readable message.
          examples:
            - Hello from WoopSocial API
        timestamp:
          type: string
          format: date-time
          description: Current server time in UTC (ISO 8601) with millisecond precision.
          examples:
            - '2026-03-28T09:30:26.123Z'
        version:
          type: string
          description: API version that produced the response.
          examples:
            - v1
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      bearerFormat: API key

````