Skip to main content
POST
/
agent
/
invoke
Invoke
curl --request POST \
  --url https://api.example.com/agent/invoke \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_id": "<string>",
  "query": "<string>"
}
'
{
  "session_id": "<string>",
  "response": "<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

Response payload for chat endpoints.

Attributes: session_id: Echoed session identifier. response: Agent's textual response.

session_id
string
required
response
string
required
Last modified on May 22, 2026