The SDK throws typed errors so you can branch on failure modes.Documentation Index
Fetch the complete documentation index at: https://docs.amika.dev/llms.txt
Use this file to discover all available pages before exploring further.
AmikaError
The base class for every error the SDK raises.
AmikaError to handle anything the SDK throws, including the failed
sandbox state surfaced by the wait helpers.
AmikaHTTPError
Thrown when the API returns a non-2xx response.
statusCode— the HTTP status.body— the raw response body.userMessage()— parses a structured error ({ code | error_code, message }) from the body and returns a human-readable string, prefixing the stable error code when present. Falls back to the raw body if parsing fails.
getLatestSession is the one place where a 404 is not an error — it
returns null instead of throwing. You don’t need a handler for that case.extractAgentAuthError
agentSend runs an agent that talks to an upstream AI provider. If that
provider rejects the agent’s credentials (e.g. an Anthropic 401), the
failure surfaces as an AmikaHTTPError. extractAgentAuthError inspects
such an error and returns a short description if the root cause is an
agent-side auth failure, or "" otherwise.