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

# Get Client

> Get a single client with assigned member details

<Note>This endpoint requires authentication.</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  Client UUID
</ParamField>

## Response

Client object with resolved writer and designer details.

<ResponseField name="id" type="string">
  Client UUID
</ResponseField>

<ResponseField name="name" type="string">
  Client name
</ResponseField>

<ResponseField name="deployDay" type="string">
  Deploy day
</ResponseField>

<ResponseField name="contentCadence" type="integer">
  Posts per week
</ResponseField>

<ResponseField name="status" type="string">
  Current status
</ResponseField>

<ResponseField name="writers" type="array">
  Resolved writer objects with id, name, email
</ResponseField>

<ResponseField name="designers" type="array">
  Resolved designer objects with id, name, email
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/clients/client-uuid-1" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```typescript TypeScript theme={null}
  const client = await api.getClient("client-uuid-1");
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "client-uuid-1",
    "name": "Acme Corp",
    "deployDay": "Monday",
    "contentCadence": 2,
    "status": "active",
    "assignedWriters": ["user-uuid-1"],
    "assignedDesigners": ["user-uuid-2"],
    "writers": [{"id": "user-uuid-1", "name": "Alice", "email": "alice@example.com"}],
    "designers": [{"id": "user-uuid-2", "name": "Bob", "email": "bob@example.com"}],
    "createdAt": "2026-03-06T10:00:00.000Z",
    "updatedAt": "2026-03-06T10:00:00.000Z"
  }
  ```
</ResponseExample>
