Something broke on our side that we didn’t anticipate. EveryDocumentation Index
Fetch the complete documentation index at: https://docs.letmepost.dev/llms.txt
Use this file to discover all available pages before exploring further.
internal_error is a bug. The requestId field is the link between you and our logs.
What triggers it
- Unhandled exceptions on a code path we haven’t covered.
- Database / Redis connectivity loss.
- Storage layer (S3) refused the call for a reason we can’t classify.
- A feature flag is in an inconsistent state.
platform_unavailable instead — internal_error is exclusively about us.
Response shape
internal_error.json
message field is intentionally generic — internal errors don’t leak server-side details. The requestId is the way to reference this specific failure.
How to handle
- Retry once with the same
Idempotency-Key. - If it fails again, file an issue or open a support thread with the
requestId. - We do not return server stack traces; please don’t try to parse
messagefor diagnosis.
Related
- Idempotency — every retry is safe with a key.
platform_unavailable— third-party outage, not ours.