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

# Status

> Verifique a disponibilidade básica da API troqpay.

# Status

`GET /health` é o endpoint público para checar se a API está respondendo.

Ele não exige autenticação e não retorna dados de merchants.

## Exemplo

```bash theme={null}
curl https://api.troqpay.com/health
```

```json theme={null}
{
  "ok": true,
  "service": "troqpay-api",
  "requestId": "req_4a8b3c1d5e6f2a9b0c1d2e3f"
}
```

## Quando usar

<CardGroup cols={2}>
  <Card title="Monitoramento">
    Use em probes leves de disponibilidade, sem token.
  </Card>

  <Card title="Debug inicial">
    Confirme se a API responde antes de investigar autenticação, payload ou provedor.
  </Card>
</CardGroup>

## Próximos passos

<CardGroup cols={3}>
  <Card title="Erros" href="/flows/errors">
    Veja como interpretar respostas 4xx e 5xx.
  </Card>

  <Card title="Webhooks" href="/flows/webhooks">
    Configure callbacks para acompanhar mudanças de checkout.
  </Card>

  <Card title="API Reference" href="/api-reference">
    Consulte o schema completo de `GET /health`.
  </Card>
</CardGroup>
