---
title: "List Agents"
method: GET
path: "/v1/agents"
tags: ["agents"]
---

# List Agents

`GET /v1/agents`

List all agents for this account.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AgentListResponse
  - `data` AgentResponse[], required
    - `id` string, required
    - `name` string, required
    - `description` string, nullable, required
    - `voiceMode` 'webhook' | 'hosted', required
    - `enableMessaging` boolean
    - `modelTier` 'turbo' | 'balanced' | 'max'
    - `systemPrompt` string, nullable
    - `beginMessage` string, nullable
    - `voice` string, required
    - `transferNumber` string, nullable
    - `customTools` object[], nullable
    - `voicemailMessage` string, nullable
    - `callScreeningIdentity` string, nullable
    - `callScreeningPurpose` string, nullable
    - `sttMode` 'fast' | 'accurate' — Speech-to-text mode. 'fast' optimizes for latency, 'accurate' optimizes for transcription accuracy (~200ms additional latency).
    - `ambientSound` 'none' | 'office' | 'coffee-shop' | 'outdoor' — Background ambience to mask synthetic silence between turns. 'none' disables; 'office', 'coffee-shop', 'outdoor' enable a quiet bed.
    - `denoisingMode` 'noise-cancellation' | 'noise-and-background-speech-cancellation' — Audio denoising. 'noise-cancellation' (default) handles general noise. 'noise-and-background-speech-cancellation' is more aggressive for callers in cars, cafes, or near TVs ($0.005/min surcharge).
    - `maxSilenceMs` integer — Hang up the call after this many milliseconds of caller silence. Range 10000 (10s) to 3600000 (1 hour). Default 600000 (10 min).
    - `voiceSpeed` number — Voice speed multiplier. Range 0.5 to 2.0. Default 1.0.
    - `interruptionSensitivity` number — How easily callers can interrupt the agent. Range 0.0 to 1.0. Default 0.8.
    - `enableBackchannel` boolean — When true, the agent interjects short filler words like 'uh-huh' or 'mhmm' during longer caller utterances. Defaults to true.
    - `language` string — BCP-47 locale that drives the agent's speech recognition and pronunciation. Defaults to 'en-US'.
    - `createdAt` string, date-time, required
    - `numbers` AgentNumberResponse[], nullable
      - `id` string, required
      - `phoneNumber` string, required
      - `status` string, required
      - `type` string
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/agentphone/apis/agentphone-api.md) · [All operations](https://skmtc.net/agentphone/apis/agentphone-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agentphone/agentphone-api/versions/3f3aa65dcd20/schema)
