A ALEFBADeveloper Platform
Status Trust

Reliability

Error Codes

Use HTTP status codes and structured error codes to handle ALEFBA API failures.

Error envelope

json
{
  "success": false,
  "error": {
    "code": "invalid_key",
    "message": "API key is invalid or has been revoked."
  }
}

Documented errors

HTTPCodeMeaningClient action
400Request-dependentInvalid JSON, parameters or request data.Correct the request; do not blindly retry.
401missing_keyBearer API key was not supplied.Add the Authorization header.
401invalid_keyKey is invalid, inactive or revoked.Stop and replace or reactivate credentials.
404Request-dependentRoute or authorized resource was not found.Verify the endpoint and identifier.
429rate_limitedDaily allowance was reached.Delay further requests.
500Request-dependentUnexpected server failure.Retry cautiously and contact support if persistent.

Handling guidance