Conversations
Async conversation session
Used to interact with asynchronous conversations (e.g. those created with chat_async
).
These sessions follow a standard request/response flow—unlike real-time conversations, they do not use WebSocket or WebRTC transport. The client explicitly manages the conversation lifecycle.
- Events are streamed as newline-delimited JSON via Server-Sent Events (SSE).
- See the Real-time chat session WebSocket API documentation for event types, schema, and usage.
POST
Async conversation session
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The API version to use.
Available options:
2025-06-19
Path Parameters
Unique identifier for the conversation, e.g. conv_8qm9JBCiTe7
.
Body
application/json
Events sent by the client to initiate or interact with a conversation.
Response
200
text/event-stream
Successful response.
Events emitted by the agent system in response to client input or internal agent logic.
Async conversation session