Skip to main content
GET
/
agent
/
sessions
/
{session_id}
Get Session
curl --request GET \
  --url https://api.example.com/agent/sessions/{session_id}
{
  "id": "<string>",
  "lastUpdateTime": 123,
  "userId": "<string>",
  "threadId": "<string>",
  "messages": [
    {
      "id": "<string>",
      "content": "<string>",
      "timestamp": 123
    }
  ]
}

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.

Path Parameters

session_id
string
required

Response

Successful Response

Full /agent/sessions/{id} response. Messages are text-only.

id
string
required
lastUpdateTime
number | null
userId
string | null
threadId
string | null
messages
SessionMessage · object[]
Last modified on May 22, 2026