> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev.setoo.work/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

***

title: Agents Overview
description: The Agent resource and its lifecycle
-------------------------------------------------

An **Agent** is the core resource in Agentic OS — it bundles an LLM prompt, voice,
knowledge base, and tools into a reusable configuration you can call, message, or
run in a campaign.

| Endpoint                                                         | Method | Path                                    |               |
| ---------------------------------------------------------------- | ------ | --------------------------------------- | ------------- |
| Endpoint                                                         | Method | Path                                    | Verified      |
| ---                                                              | ---    | ---                                     | ---           |
| [Create agent](/docs/api-reference/agents/create-agent)               | POST   | `/agents`                               | ✅             |
| [List agents](/docs/api-reference/agents/list-agents)                 | GET    | `/agents`                               | ✅             |
| [Patch update agent](/docs/api-reference/agents/patch-update-agent)   | PATCH  | `/agents/{id}`                          | ✅             |
| [Get agent](/docs/api-reference/agents/get-agent)                     | GET    | `/agents/{id}`                          | ⚠️ unverified |
| [Get agent execution](/docs/api-reference/agents/get-agent-execution) | GET    | `/agents/{id}/executions/{executionId}` | ⚠️ unverified |
| [Get all executions](/docs/api-reference/agents/get-all-executions)   | GET    | `/agents/{id}/executions`               | ⚠️ unverified |
| [Delete agent](/docs/api-reference/agents/delete-agent)               | DELETE | `/agents/{id}`                          | ⚠️ unverified |
| [Stop agent calls](/docs/api-reference/agents/stop-agent-calls)       | POST   | `/agents/{id}/stop-calls`               | ⚠️ unverified |

There is no verified `PUT /agents/{id}` (full replace) — use
[Patch update agent](/docs/api-reference/agents/patch-update-agent) for all updates.
