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

# API Status and Version



## OpenAPI

````yaml /latest.yml GET /
openapi: 3.0.1
info:
  title: Cartesia API
  version: 0.0.1
servers:
  - url: https://api.cartesia.ai
    description: Production
security: []
paths:
  /:
    get:
      tags:
        - ApiStatus
      summary: API Status and Version
      operationId: apiStatus_get
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIInfo'
components:
  schemas:
    APIInfo:
      title: APIInfo
      type: object
      properties:
        ok:
          type: boolean
        version:
          type: string
          format: date
          description: Latest API version
          example: '2025-03-01'
      required:
        - ok
        - version

````