SCHEDY_API_KEY is set, every request must include the matching key:
If
SCHEDY_API_KEY is unset, all endpoints are open - fine for local use. Put a reverse proxy in front for anything exposed to the internet.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Protect every endpoint with an API key using the X-API-Key header.
SCHEDY_API_KEY is set, every request must include the matching key:
curl http://localhost:8080/tasks -H "X-API-Key: your-secret"
| Situation | Response |
|---|---|
Missing X-API-Key | 401 Unauthorized |
| Wrong key | 403 Forbidden |
SCHEDY_API_KEY is unset, all endpoints are open - fine for local use. Put a reverse proxy in front for anything exposed to the internet.