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

# Health check



## OpenAPI

````yaml /openapi.yaml get /health
openapi: 3.1.0
info:
  title: v0x API
  version: 1.0.0
  description: >
    API pública da v0x para upload de arquivos, links diretos via CDN e
    gerenciamento de chaves.


    - Base URL produção: `https://api.v0x.lol/api/v1`

    - Autenticação: `Authorization: Bearer v0x_live_...`

    - Erros: `{ "error": "code" }`
servers:
  - url: https://api.v0x.lol/api/v1
    description: Production
  - url: http://localhost:8080/api/v1
    description: Local development
security:
  - BearerAuth: []
tags:
  - name: Health
    description: Status da API
  - name: Auth
    description: Sessão web (OAuth Google)
  - name: Files
    description: Upload e gerenciamento de arquivos
  - name: API Keys
    description: Chaves de API para integrações
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      responses:
        '200':
          description: API status
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  db:
                    type: string
                  storage:
                    type: string
      security: []
      servers:
        - url: https://api.v0x.lol
        - url: http://localhost:8080
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Chave de API no formato v0x_live_...

````