curl "https://api.hitler.app/api/clients?status=active" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id": "client-uuid-1",
"name": "Acme Corp",
"deployDay": "Monday",
"contentCadence": 2,
"status": "active",
"assignedWriters": ["user-uuid-1"],
"assignedDesigners": ["user-uuid-2"],
"createdAt": "2026-03-06T10:00:00.000Z",
"updatedAt": "2026-03-06T10:00:00.000Z"
}
]
Clients
List Clients
List all clients for the organization
GET
/
api
/
clients
curl "https://api.hitler.app/api/clients?status=active" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id": "client-uuid-1",
"name": "Acme Corp",
"deployDay": "Monday",
"contentCadence": 2,
"status": "active",
"assignedWriters": ["user-uuid-1"],
"assignedDesigners": ["user-uuid-2"],
"createdAt": "2026-03-06T10:00:00.000Z",
"updatedAt": "2026-03-06T10:00:00.000Z"
}
]
This endpoint requires authentication.
Query Parameters
Filter by status:
active, paused, offboardedResponse
Array of client objects.curl "https://api.hitler.app/api/clients?status=active" \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id": "client-uuid-1",
"name": "Acme Corp",
"deployDay": "Monday",
"contentCadence": 2,
"status": "active",
"assignedWriters": ["user-uuid-1"],
"assignedDesigners": ["user-uuid-2"],
"createdAt": "2026-03-06T10:00:00.000Z",
"updatedAt": "2026-03-06T10:00:00.000Z"
}
]
⌘I