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

# Health check

> Returns the health status of the API server, including uptime and version information. This endpoint does not require authentication.



## OpenAPI

````yaml /api-reference/openapi.json get /v0/health
openapi: 3.0.0
info:
  title: Formable API
  version: 1.0.0
  description: >-
    The Formable API lets you embed e-signature and document redlining workflows
    directly into your product. Create templates, send documents for signature,
    run collaborative redline negotiations, and retrieve completed documents.
servers:
  - url: https://formable-production.up.railway.app/api
    description: Production
  - url: http://localhost:4000/api
    description: Local
security:
  - bearerAuth: []
tags:
  - name: Templates
    description: Upload documents and generate editor URLs.
  - name: Signature Requests
    description: Send documents for e-signature and retrieve signed results.
  - name: Redlining
    description: Create and manage collaborative redline negotiations.
  - name: Billing
    description: Retrieve usage information.
  - name: Health
    description: Service health checks.
paths:
  /v0/health:
    get:
      tags:
        - Health
      summary: Health check
      description: >-
        Returns the health status of the API server, including uptime and
        version information. This endpoint does not require authentication.
      operationId: healthCheck
      responses:
        '200':
          description: Server is healthy.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: healthy
                  timestamp:
                    type: string
                    format: date-time
                    description: Current server timestamp in ISO format.
                    example: '2024-01-15T10:30:00.000Z'
                  uptime:
                    type: number
                    description: Server uptime in seconds.
                    example: 3600.5
                  version:
                    type: string
                    description: API version.
                    example: 1.0.0
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        OAuth 2.0 client credentials access token, passed as a Bearer token in
        the Authorization header.

````