detail is a human-readable message, and the status code is what your
code should branch on. Some of the messages you’ll see:
413 — request too large
The body size is checked before anything is parsed, from the Content-Length header, so an oversized request never
reaches claim validation.
422 — invalid params
Returned when a claim’s action is recognized but its params don’t satisfy that action’s schema — for example, a
github.commit.push claim whose sha isn’t 40 hex characters. The message names the field and what’s wrong with
it. See each action’s expected params in connectors.
429 — rate limited
Returned with a Retry-After header telling you how many seconds to wait before trying again. Claim submission and
claim-status reads are limited per API key; receipt reads are limited per requesting IP address, since they need no
key.