Dynamiq
Apps

List app sessions

Lists conversation sessions of an app. A session groups runs that share a `session_id`.

GET
/v1/apps/{app_id}/sessions

Authorization

AuthorizationBearer <token>

Organization or project Access Key created in the Dynamiq console. Used for deployed-app (Runs API), AI Gateway, traces collector, and management API requests. Send as Authorization: Bearer <access-key>.

In: header

Path Parameters

app_id*string

App UUID.

Query Parameters

page?integer

Page number (1-based).

page_size?integer

Number of items per page.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/sessions"
{
  "data": [
    {
      "id": "3d3e8a1f-09a6-4f64-9d68-1d2f3a4b5c6d",
      "created_at": "2026-06-10T09:15:21Z",
      "input": {
        "ticket_subject": "Charged twice for June invoice"
      }
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 25,
    "page_count": 1,
    "total_count": 1
  }
}
{
  "error": {
    "code": "unauthorized",
    "message": "Unauthorized"
  }
}
{
  "error": {
    "code": "not_found",
    "message": "Not Found"
  }
}