Skip to main content
POST
/
agent
/
{agent_id}
/
chat
Chat
curl --request POST \
  --url https://api.example.com/agent/{agent_id}/chat
Conversational interface for an agent. Automatically manages conversation state.

Path Parameters

ParameterTypeDescription
agent_idstringThe agent’s unique identifier

Request Body

{
  "message": "What meetings do I have tomorrow?",
  "conversation_id": "conv_abc123"
}

Response

Returns an SSE stream identical to the Run Agent endpoint. Conversation history is automatically loaded and managed.