---
title: "List calls"
method: GET
path: "/api/v1/public/agents/{agent_id}/calls"
tags: ["public"]
---

# List calls

`GET /api/v1/public/agents/{agent_id}/calls`

List calls made for leads assigned to a voice agent using cursor pagination.

## Path parameters

- `agent_id` string, required

## Query parameters

- `cursor` string, nullable — Opaque cursor returned by the previous page.
- `limit` integer, nullable — Maximum number of records to return. Omit with cursor to use 50. Omit both cursor and limit for the legacy unpaginated v1 response.

## Response `200`

Successful Response

- CallResponse[]
  - `id` string, required
  - `leadId` string, required
  - `useCaseId` string, nullable
  - `useCaseName` string, nullable
  - `agentId` string, nullable
  - `agentName` string, nullable
  - `transcription` string, nullable
  - `summary` string, nullable
  - `recordingUrl` string, nullable
  - `billDuration` integer, nullable
  - `callDuration` integer, nullable
  - `startTime` string, date-time, nullable
  - `endTime` string, date-time, nullable
  - `callConclusion` string, nullable
  - `apiCallbackUrl` string, nullable
  - `billedDuration` integer, nullable
  - `billableDurationSeconds` integer, nullable
  - `billableCostInr` number, nullable
  - `status` string, nullable
  - `callSuccess` boolean, nullable
  - `callRating` number, nullable
  - `aiCallRating` number, nullable
  - `humanCallRating` number, nullable
  - `callFeedback` string, nullable
  - `lead` CallLeadResponse
    - `id` string, nullable
    - `name` string, required
    - `phone` string, nullable
    - `description` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/outcallerai/apis/fastapi.md) · [All operations](https://skmtc.net/outcallerai/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/outcallerai/fastapi/revisions/4cbf44e1d4fd/schema)
