Guides ยท Technology

API Error Handling

Fail clearly and safely

API error handling uses consistent status codes, structured error bodies, idempotency, and safe fallbacks to help clients recover and debug.

Respond Clearly

Use proper HTTP codes and structured errors with IDs and messages.

Stay Safe

Return minimal internals; default to safe no-ops on ambiguity.

Support Recovery

Document retry rules and idempotent endpoints.

Related Terms