Skip to main content
GET
Returns one agent from the project’s registry. Use it to resolve an id you stored earlier (for example, from Register Agent or a monitoring signal’s agentId) back to its display name.
Agents cannot be deleted through the API - the registry row is the identity every trace, monitoring profile, and signal for that agent keys off. The hosted platform’s DELETE /ingest/tracked-agents/:botId endpoint does not exist on the self-host engine; to quiet an agent, disable its monitoring profile instead (PUT /api/v1/monitor/profiles/{agentId} with { "enabled": false }).

Authentication

string
required
Project API key.

Path Parameters

string
required
Agent _id from List Agents.

Response

object
The agent: { "_id": string, "name": string, "createdAt": string }.

Errors