Ambient Content Retrieval
Get Ambient Session Status
Check current status and processing state of ambient session
GET
cURL
Use this endpoint to get the current status of an . Use it to track the session’s progress, for example, to see if it is ready to receive audio, still processing, or has completed.
Session status values
Use the following status values to track the session’s progress:- created: The ambient session has been created but has not yet started.
- ready: The ambient session has started and is ready for audio streaming.
- running: The ambient session is actively processing audio and generating content.
- aborted: The ambient session has been cancelled by the user or client.
- skipped: The ambient session was skipped because not enough audio was received or the was empty.
- failed: The ambient session failed due to an error during processing.
- completed: The ambient session completed successfully and generated the final content.
Code examples
- Python
- TypeScript
Headers
sdp_suki_token
Unique identifier for the provider. Optional for standard partners. Required for Single Auth Token authentication, where multiple providers share the same partner_token.
Example:
"provider-123"
Path Parameters
ambient_session_id
Response
Success Response
Response body for /api/v1/ambient/session/{ambient_session_id}/status.
status of the ambient session
Available options:
created, ready, running, paused, aborted, failed, completed Example:
"completed"
Last modified on June 12, 2026
cURL