---
title: "List call records (minimal)"
method: GET
path: "/v1/voice-agents/conversations/minimal-list"
tags: ["Conversations"]
---

# List call records (minimal)

`GET /v1/voice-agents/conversations/minimal-list`

Returns a paginated, lightweight list of voice-agent call records for a project. Each row carries only the fields needed for dashboard timelines (id, createdAt, status, agent, duration, channel, phone numbers). Filter by voice agent, one-or-many statuses, and a UTC time range on `createdAt`.

Timestamps are **UTC epoch milliseconds**. Convert the user's local window to UTC on the client before calling.

## Query parameters

- `voiceAgentId` string, uuid
- `status` string[]
- `startTime` integer
- `endTime` integer
- `page` integer
- `perPage` integer

## Response `200`

Successful response

- ListMinimalCallsResponse
  - `success` boolean
  - `message` string
  - `data` object
    - `total` integer — Total number of records matching the filters across all pages.
    - `filtered` integer — Number of records returned on this page (<= perPage).
    - `calls` object[]
      - `id` string, uuid
      - `createdAt` string, date-time
      - `status` 'PENDING' | 'IN_PROGRESS' | 'COMPLETED' | 'NO_ANSWER' | 'FAILED' | 'FORWARDED' | 'TERMINATED'
      - `voiceAgentId` string, uuid, nullable
      - `agentName` string, nullable
      - `duration` number, nullable — Call duration in seconds. Null for calls that did not connect.
      - `channelType` string, nullable
      - `callParams` object, nullable — Phone numbers involved in the call. Null for non-telephone channels.
        - `machineNumber` string
        - `userNumber` string

## Other responses

- `400` — Bad request - validation error
- `401` — Unauthorized
- `500` — Server Side Error

---

[API](https://skmtc.dev/tryhamsa/apis/hamsa-api.md) · [All operations](https://skmtc.dev/tryhamsa/apis/hamsa-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tryhamsa/hamsa-api/revisions/ecbeb5d8dc13/schema)
