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

# Get Agent

## Description

Get a specific agent by ID.

## Authentication

Required (API key or JWT token)

## Path Parameters

<ParamField path="agentId" type="string" required>
  The ID of the agent
</ParamField>

## Response

<ResponseField name="agent" type="object">
  Agent object with all details
</ResponseField>

## Example Request

```bash theme={null}
curl -H "Authorization: Bearer conv_YOUR_API_KEY" \
  https://api.convosphere.site/api/agents/agent_123
```
