Skip to main content
Error handling is part of runtime safety. Your Anthale integration should distinguish bad requests from temporary service issues and should preserve enough context for debugging.

Common statuses and failure types

Retry guidance

Retryable:
  • 429.
  • transient network failures.
  • temporary 5xx responses.
Do not retry without changing the request:
  • 400.
  • 401.
  • 403.
  • 404.
  • 422.

Error payload shape

title is a short error name. machineCode is the stable code your application should key on for branching and logging. message is the human-readable explanation. details may be present when Anthale needs to return structured context for the error.

Next steps

For rate limits and backoff behavior, read Usage Limits.
Last modified on March 19, 2026