---
title: "Get agent by ID"
method: GET
path: "/v1/agents/{id}"
tags: ["Agents"]
---

# Get agent by ID

`GET /v1/agents/{id}`

Retrieves a specific agent by its UUID. Returns the agent even if soft-deleted (deletedAt will be populated).

## Path parameters

- `id` string, uuid, required — Agent UUID

## Response `200`

Agent retrieved successfully

- Agent
  - `id` string, uuid, required — Unique agent identifier
  - `workspaceId` string, uuid, required — Workspace ID that owns this agent
  - `name` string, required — Agent name
  - `prompt` string, nullable, required — System prompt for the agent
  - `voiceConfig` object, nullable, required — Voice configuration settings (JSON)
  - `widgetConfig` object, nullable, required — Widget appearance settings (JSON)
  - `language` string, nullable, required — Agent language code
  - `createdAt` string, date-time, required — Agent creation timestamp
  - `updatedAt` string, date-time, required — Agent last update timestamp
  - `deletedAt` string, date-time, nullable, required — Soft delete timestamp (null if active)

## Other responses

- `400` — Invalid agent ID format
- `401` — Missing or invalid API key
- `403` — API key does not have access to this agent
- `404` — Agent not found

---

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