AurionAI Docs

List Conversations

List past voice conversations for the authenticated end-user. Queries the `calls` table (shared with livekit-agent) scoped to the current requester and mobile-app/web-widget channels.

GET
/api/v1/app/conversations

List past voice conversations for the authenticated end-user.

Queries the calls table (shared with livekit-agent) scoped to the current requester and mobile-app/web-widget channels.

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Query Parameters

page?Page
Default1
Range1 <= value
per_page?Per Page
Default20
Range1 <= value <= 100

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/app/conversations"
{
  "conversations": [
    {
      "duration_seconds": 0,
      "id": "string",
      "language": "string",
      "started_at": "string",
      "summary": "string",
      "ticket_created": false,
      "ticket_id": "string"
    }
  ],
  "page": 0,
  "per_page": 0,
  "total": 0
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}