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

# Get Assistant

> Retrieve a single assistant by ID.

<Note>
  Retrieve your API Key from your [VozAgent Dashboard](https://app.vozagent.ai/settings/api).
</Note>

## Path parameters

<ParamField path="id" type="string" required>
  The unique identifier of the assistant to retrieve.
</ParamField>

## Response

Returns the full assistant object with all configuration details including system prompt and voice settings.

<RequestExample>
  ```bash theme={null}
  curl https://api.vozagent.ai/v1/assistants/a1b2c3d4... \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "a1b2c3d4-e5f6-a7b8-c9d0-e1f2a3b4c5d6",
    "name": "Inbound Receptionist",
    "role": "receptionist",
    "assistant_type": "inbound",
    "is_active": true,
    "voice_id": "sarah",
    "first_message": "Hello! Thanks for calling Acme Outdoor Living. How can I help you today?",
    "first_message_mode": "assistant-speaks-first",
    "personality": "friendly, professional",
    "phone_number_id": "pn-a1b2c3d4",
    "vapi_assistant_id": "vapi-xyz123",
    "system_prompt": "You are a helpful receptionist...",
    "template_id": "tpl-inbound-001",
    "created_at": "2024-01-15T09:30:00Z",
    "updated_at": "2024-01-15T09:30:00Z"
  }
  ```
</ResponseExample>
