> ## 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.

# Openapi Document



## OpenAPI

````yaml GET /openapi.json
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:
  /openapi.json:
    get:
      summary: OpenAPI document
      responses:
        '200':
          description: OpenAPI 3.1 document
      security: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
    bearerApiKey:
      type: http
      scheme: bearer

````