Overview
The Synap SDK uses a structured error hierarchy to distinguish between transient errors (which are automatically retried) and permanent errors (which require your intervention). Understanding this hierarchy is essential for building robust integrations. This page is the handling guide: the hierarchy, when each error fires, and the try/except patterns to catch them.Full error reference →
For the exhaustive catalog of server-side error codes (the wire-level
code field, HTTP status, and details shape) see Error Codes. For the complete SDK exception table at a glance, see SDK Reference: Error handling.Error Hierarchy
All Synap errors inherit fromSynapError. The two main branches determine retry behavior:
correlation_id field that uniquely identifies the request. This ID is invaluable for debugging and when contacting Synap support.
The hierarchy below reflects the full public error surface.
AgentUnavailableError is transient (retryable); all others under SynapPermanentError are non-retryable.Transient Errors
Transient errors represent temporary conditions that typically resolve on their own. The SDK automatically retries these errors according to your configured retry policy. You only need to handle them if all retry attempts are exhausted.NetworkTimeoutError
Raised when a network request to Synap Cloud times out before completing.
- Network connectivity issues between your application and Synap Cloud
- DNS resolution failures
- The request exceeded the configured
connectorreadtimeout
conversation_id must be a valid UUID string; non-UUID values are rejected by the server. Generate one with str(uuid.uuid4()), or reuse the UUID you already manage per conversation. The examples below use str(uuid.uuid4()) to make this explicit.RateLimitError
Raised when your application exceeds the rate limit for the Synap API. Includes a
retry_after_seconds field indicating how long to wait before retrying.- Too many requests in a short time window
- Burst traffic exceeding your plan’s rate limit
The SDK’s built-in retry policy respects
retry_after_seconds automatically. If the rate limit is short (a few seconds), the SDK waits and retries without raising the error to your code. The error only surfaces when all retry attempts are exhausted.ServiceUnavailableError
Raised when Synap Cloud is temporarily unavailable due to maintenance, deployment, or an outage.
- Synap Cloud is undergoing maintenance
- A rolling deployment is in progress
- Temporary backend issues
Permanent Errors
Permanent errors indicate problems that will not resolve by retrying. They require changes to your code, configuration, or data.InvalidInputError
Raised when the request contains invalid parameters or data that fails validation.
- Invalid
document_typevalue - Missing required fields
- Parameter values outside valid ranges
- Malformed data in the request body
InvalidInstanceIdError
A defined subtype of
InvalidInputError for an unknown or malformed instance_id.The SDK currently surfaces a bad
instance_id as the base InvalidInputError (HTTP 400), not as this specific subtype. Catch InvalidInputError to handle it; that also catches this subtype if a future SDK version raises it directly.- The
instance_iddoes not match the expected format - The instance has been deleted or deactivated
- A typo in the instance ID
InvalidConversationIdError
A defined subtype of
InvalidInputError for a malformed conversation_id (for example, a non-UUID string).The SDK currently surfaces a malformed
conversation_id as the base InvalidInputError (HTTP 400), not as this specific subtype. Catch InvalidInputError. Note that a well-formed conversation_id with no messages yet does not raise; it returns an empty ContextResponse (see cold-start behavior).- The
conversation_idis not a valid UUID - A typo or wrong identifier format
AuthenticationError
Raised when the SDK cannot authenticate with Synap Cloud. This is a general authentication failure.
- API key is invalid or revoked
- No API key was provided (neither
SYNAP_API_KEYenv var nor theapi_key=constructor argument) - The instance’s credentials have been rotated without updating the API key your application uses
ContextNotFoundError
Raised when a requested context resource genuinely cannot be located, distinct from a valid resource that simply has no memories yet, which returns an empty
ContextResponse rather than raising.sdk.conversation.context.fetch(): a brand-new or never-ingestedconversation_idreturns an emptyContextResponse(facts == [],preferences == [], etc.), not an error. This is the normal cold-start path. A malformed (non-UUID)conversation_idraisesInvalidInputErrorinstead.sdk.user.context.fetch()/sdk.customer.context.fetch()/sdk.client.context.fetch(): a scope that has never had memories ingested also returns an emptyContextResponse. Treat empty lists as “no context yet,” not as an error.
ContextNotFoundError is reserved for the case where the underlying context resource itself is missing or was removed, not for the everyday “new conversation / new user” case.
When it occurs:
- A previously available context resource was deleted before retrieval
- The backend cannot locate the addressed context resource (as opposed to locating it and finding it empty)
SessionExpiredError
Raised when the current session has expired and cannot be resumed. Sessions are time-bounded and must be re-established after expiry.
- The session has been idle beyond its expiry window
- The session was invalidated server-side (e.g., credential rotation)
InsufficientCreditsError
Raised when the client’s credit balance is too low to satisfy the request. Carries
balance_credits, minimum_required_credits, recovery_url, and redeem_url so you can surface the right next-step to the user. See Pricing & Credits for how credits and overage work.- The client has run out of credits
- The current credit balance is below the minimum required for the requested operation
AgentUnavailableError
Raised when the Synap agent backing the instance is temporarily unavailable. This is a transient error; the SDK will automatically retry.
- The agent process is restarting or being redeployed
- Temporary resource contention on the backend
The SDK automatically retries
AgentUnavailableError according to your configured retry policy. This error only surfaces to your code when all retry attempts are exhausted.ListeningAlreadyActiveError
Raised when you call
listen() on an instance that already has an active listening stream. Only one stream can be active per SDK instance at a time.- Calling
listen()a second time without first callingstop_listening() - Duplicate initialization paths in your application
ListeningNotActiveError
Raised when you call
stop_listening() or another stream operation when no listening stream is currently active.- Calling
stop_listening()beforelisten()has been called - Calling stream operations after the stream has already been stopped
Using correlation_id
Every Synap error includes an optionalcorrelation_id that uniquely identifies the failed request within Synap’s distributed tracing system.
Retry Policy Configuration
The SDK’s built-in retry policy handles transient errors automatically. You can customize the retry behavior throughRetryPolicy in your SDKConfig.
Retry Behavior
The SDK uses exponential backoff with optional jitter:RateLimitError, the SDK respects the retry_after_seconds value instead of the exponential backoff, waiting the exact duration specified by the server.
Disabling Retries
To disable automatic retries entirely (useful for testing or when you implement your own retry logic):Customizing Retryable Errors
By default, all four transient error types are retried (NetworkTimeoutError, RateLimitError, ServiceUnavailableError, and AgentUnavailableError). Listing the base SynapTransientError in retryable_errors covers every transient subtype, including any added in future SDK releases. You can customize this list, though adding permanent errors is generally not recommended.
Common Error Handling Patterns
Catch-All with Transient/Permanent Distinction
Per-Operation Error Handling
Initialization Error Handling
Full error reference
The hierarchy and handling patterns above cover how to catch and respond to each error. For the at-a-glance catalog (every SDK exception class with its transient/permanent type and common cause) see SDK Reference: Error handling. For the server-side wire codes those exceptions wrap (HTTP status, machine-readablecode, and details shape) see Error Codes.
Next Steps
SDK Configuration
Customize retry policies, timeouts, and other SDK settings.
Initializing the SDK
Set up the SDK with proper error handling from the start.
Support
Contact Synap support with correlation IDs for issue resolution.
FAQ
Common questions about errors and troubleshooting.