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

# Health Check



## OpenAPI

````yaml GET /health
openapi: 3.1.0
info:
  title: Financial Data API
  version: 0.1.0
  description: Raw-first, derived-ready financial data infrastructure API.
servers:
  - url: https://api.financialdatapi.com
    description: Production
security:
  - apiKey: []
  - bearerApiKey: []
paths:
  /health:
    get:
      summary: Health check
      responses:
        '200':
          description: Service health
      security: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
    bearerApiKey:
      type: http
      scheme: bearer

````