Form Filling Content Retrieval
Get Form Filling Session Status
Poll processing status for a form-filling session
GET
cURL
Use this endpoint to know the processing status for a form-filling session. Use your ambient session identifier (id) to identify the session you want to check the status of.
Form filling session status values
Use the following status values to track session progress:- created: The system creates the form-filling session but does not start it yet.
- ready: The form-filling session starts and is ready for audio streaming.
- running: The form-filling session processes audio and generates content.
- staged: The form-filling session is staged and is ready to be processed.
- aborted: The user or client cancels the form-filling session.
- failed: An error stops the form-filling session during processing.
- completed: The form-filling session completes successfully and generates the final content.
Code examples
The code examples below use placeholders and the stage host
sdp.suki-stage.com only as examples.
For credentials, base URLs, where to run Python or TypeScript, CORS, and cURL, refer to Using code examples in your integration in the API Reference Guidelines.- 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/form-filling/session/{ambient_session_id}/status.
status of the form-filling session
Available options:
created, ready, running, paused, aborted, failed, completed Example:
"completed"
Last modified on June 12, 2026
cURL