Skip to main content
POST
/
agent
/
stream
Stream
curl --request POST \
  --url https://api.example.com/agent/stream \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_id": "<string>",
  "query": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request payload for synchronous and streaming chat endpoints.

Attributes: session_id: Client-provided session identifier for routing state. query: Natural language prompt or input for the agent.

session_id
string
required
query
string
required

Response

Successful Response

Last modified on May 22, 2026