---
title: "List agent endpoints"
method: GET
path: "/v1/agent/endpoint"
tags: ["Agent Endpoint"]
---

# List agent endpoints

`GET /v1/agent/endpoint`

Returns a paginated list of agent endpoints for the authenticated project.

## Query parameters

- `limit` integer — Maximum number of endpoints to return (default: 20, max: 50)
- `after` string — Cursor for pagination - endpoint ID to start after
- `agentId` string, uuid — Filter by agent ID
- `searchText` string — Search text to filter endpoints

## Response `200`

List of agent endpoints

- object
  - `data` AgentEndpointDetailResponse[], required
    - `id` string, uuid, required — Agent endpoint ID
    - `agentId` string, uuid, required — Agent ID this endpoint belongs to
    - `type` 'PHONE' | 'WEBSOCKET' | 'LIVEKIT' | 'SMALL_WEBRTC' | 'ELEVENLABS_WS' | 'KORE' | 'GOOGLE_CES', required — Agent endpoint type (PHONE, WEBSOCKET, LIVEKIT, SMALL_WEBRTC, or ELEVENLABS_WS)
    - `value` string, required — Agent endpoint value (phone number, URL, etc.)
    - `environment` string, required — Agent endpoint environment
    - `direction` 'INCOMING' | 'OUTGOING' | 'INCOMING_AND_OUTGOING', required — Agent endpoint direction (INCOMING, OUTGOING, INCOMING_AND_OUTGOING)
    - `outboundDialType` 'NONE' | 'HTTP_REQUEST', required — Outbound dial type (NONE or HTTP_REQUEST)
    - `outboundDialHttpRequestDefinitionId` string, uuid, nullable, required — ID of the linked HTTP request definition for outbound dialing
    - `createdAt` string, required — Creation timestamp
    - `updatedAt` string, required — Last update timestamp
  - `pagination` object, required
    - `total` number, required — Total number of items
    - `hasMore` boolean, required — Whether there are more items to fetch
    - `nextCursor` string, nullable, required — Cursor for the next page of items

## Other responses

- `401` — Unauthorized
- `500` — Internal Server Error

---

[API](https://skmtc.net/roarkhq/apis/roark-analytics-api.md) · [All operations](https://skmtc.net/roarkhq/apis/roark-analytics-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/roarkhq/roark-analytics-api/revisions/83528d3618ef/schema)
