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

# GET /

> Estado del servicio y formatos soportados.

# GET /

Endpoint de estado. Útil para health checks y para descubrir qué formatos acepta la API.

## Request

```http theme={null}
GET / HTTP/1.1
```

```bash theme={null}
curl "https://api.markpdf.tech/"
```

## Respuesta

```json theme={null}
{
  "message": "API activa.",
  "supported_formats": ["csv", "docx", "pdf", "pptx", "txt", "xlsx", "zip"],
  "default_mode": "fast"
}
```

<ResponseField name="message" type="string">
  Mensaje de estado fijo cuando la API responde correctamente.
</ResponseField>

<ResponseField name="supported_formats" type="string[]">
  Formatos de entrada aceptados, incluyendo `zip`.
</ResponseField>

<ResponseField name="default_mode" type="string">
  Modo de conversión por defecto (normalmente `fast`).
</ResponseField>

<Tip>
  Como health check basta con verificar `200` y `message == "API activa."`.
</Tip>
