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

# Get Client

> Retrieve a specific client by ID

## Path Parameters

<ParamField path="id" type="string" required>
  The client ID
</ParamField>

## Response

Returns the full client object including all settings.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.replyify.ai/api/clients/client_xyz789" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    "https://app.replyify.ai/api/clients/client_xyz789",
    { headers: { Authorization: "Bearer YOUR_API_KEY" } }
  );
  const client = await response.json();
  ```
</CodeGroup>
