`GET /api/auth/captcha/challenge` — mint a fresh ALTCHA challenge for the widget. 400 "captcha not enabled" when no HMAC secret is configured (opt-in).
const url = 'https://example.com/api/auth/captcha/challenge';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/auth/captcha/challengeResponses
Section titled “Responses”A fresh ALTCHA challenge for the widget to solve
A server-issued ALTCHA challenge, serialized as the JSON the ALTCHA widget
fetches and solves ({ algorithm, challenge, maxnumber, salt, signature }).
The widget brute-forces the integer n <= maxnumber whose
sha256(salt || n) equals challenge, then resubmits the envelope plus that
number — which AltchaVerifier::verify
re-derives and checks against signature.
object
The hash algorithm — always "SHA-256".
The lower-case hex SHA-256 digest the widget must reproduce.
The upper bound (inclusive) of the proof-of-work search space.
The server-issued salt, carrying the ?expires=<unix> suffix.
The server’s HMAC signature over the challenge hex string.
Examplegenerated
{ "algorithm": "example", "challenge": "example", "maxnumber": 1, "salt": "example", "signature": "example"}Captcha is not enabled on this instance
The canonical JSON body of every error response — the single source of truth
the frontend binds to. Every AppError serializes as this exact shape, and
the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is
what the frontend error schema is generated from, so there is no hand-written
error schema on either end.
object
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}