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

# Verify key

`GET /api/v1/ping`

Health/auth check. Returns 200 if the API key is valid.

```bash theme={null}
curl https://api.recnote.ai/api/v1/ping \
  -H "Authorization: Bearer $RECNOTE_API_KEY"
```

```json theme={null}
{ "ok": true, "service": "recnote-api", "version": "1" }
```

`401` if the key is missing or invalid.
