> ## 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.

# List Clients

> Retrieve all clients in your workspace

## Response

<ResponseField name="data" type="array">
  <Expandable title="Client object">
    <ResponseField name="id" type="string">Unique client ID</ResponseField>
    <ResponseField name="name" type="string">Client display name</ResponseField>
    <ResponseField name="service_description" type="string">Description of the client's service, used by AI for generating replies</ResponseField>
    <ResponseField name="calendar_link" type="string">Calendar booking URL (Calendly, Cal.com, etc.)</ResponseField>
    <ResponseField name="auto_send_enabled" type="boolean">Whether AI-generated replies are sent automatically</ResponseField>
    <ResponseField name="auto_send_delay_minutes" type="number">Delay in minutes before auto-sending</ResponseField>
    <ResponseField name="auto_draft_enabled" type="boolean">Whether AI drafts are generated automatically for new replies</ResponseField>
    <ResponseField name="created_at" type="string">ISO 8601 creation timestamp</ResponseField>
  </Expandable>
</ResponseField>

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

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

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://app.replyify.ai/api/clients",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
  )
  data = response.json()["data"]
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "data": [
    {
      "id": "client_xyz789",
      "name": "Acme Corp",
      "service_description": "B2B SaaS for project management. We help teams ship faster.",
      "calendar_link": "https://calendly.com/acme/30min",
      "auto_send_enabled": false,
      "auto_draft_enabled": true,
      "created_at": "2025-01-15T10:00:00Z"
    }
  ]
}
```
