Skip to main content

Endpoint

GET /api/auth/status

Authentication

This endpoint is publicly accessible and does not require authentication. However, it will check if the provided bearer token (if any) is valid.

Response

initialized
boolean
required
Whether the master password has been configured
authenticated
boolean
required
Whether the current request includes a valid authentication token

Response Example

{
  "initialized": true,
  "authenticated": false
}

Examples

curl http://localhost:3742/api/auth/status

Check with Authentication Token

curl http://localhost:3742/api/auth/status \
  -H "Authorization: Bearer fn_sess_..."

Build docs developers (and LLMs) love