---
title: "Get conversation logs for an agent"
method: GET
path: "/agent/{id}/call-logs"
tags: ["Agents"]
---

# Get conversation logs for an agent

`GET /agent/{id}/call-logs`

Returns paginated conversation logs (calls) for a specific agent in the caller's
organization. Use `GET /conversation` for cross-agent log listing; use this when
you already have an agent ID.

## Path parameters

- `id` string, required

## Query parameters

- `page` string
- `offset` string

## Response `200`

Paginated list of conversation logs for the agent.

- object
  - `status` boolean
  - `data` object
    - `callLogs` object[]
      - `_id` string
      - `createdAt` string, date-time
      - `callId` string
      - `callDuration` number
      - `recordingUrl` string, nullable
      - `callStatus` string
      - `callType` string
      - `callCost` number, nullable
      - `statusDetails` string[]
      - `fromNumber` string, nullable
      - `toNumber` string, nullable
      - `plivoData` object, nullable
    - `pagination` object
      - `currentPage` integer
      - `totalPages` integer
      - `totalCount` integer
      - `offset` integer

## Other responses

- `401` — Unauthorized access
- `404` — Resource not found — the referenced ID does not exist or does not belong to the caller's organization.
- `500` — Internal server error

## Changes

- **2026-06-21** `ea4ea58d7c4e` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/smallest-inc/apis/agent-management-api/changes/agent/:id/call-logs/get.md)

---

[API](https://skmtc.dev/smallest-inc/apis/agent-management-api.md) · [All operations](https://skmtc.dev/smallest-inc/apis/agent-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/smallest-inc/agent-management-api/revisions/ea4ea58d7c4e/schema)
