> ## 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 EOD Task Statuses

> Get individual task status entries for a given date, showing the parsed status of each task

<Note>This endpoint requires API key authentication (service-to-service) or Bearer token (admin/manager).</Note>

## Path Parameters

<ParamField path="date" type="string">
  Date in `YYYY-MM-DD` format. Defaults to today if omitted.
</ParamField>

## Query Parameters

<ParamField query="orgId" type="string" required>
  Organization UUID
</ParamField>

<ParamField query="userId" type="string">
  Filter by a specific user UUID (optional)
</ParamField>

<ParamField query="status" type="string">
  Filter by status type: `done`, `carry_forward`, `dropped`, or `no_update` (optional)
</ParamField>

## Response

Returns an array of task status entries for the requested date.

<ResponseField name="id" type="string">
  Task status entry UUID
</ResponseField>

<ResponseField name="taskId" type="string">
  Associated task UUID
</ResponseField>

<ResponseField name="userId" type="string">
  User UUID who owns the task
</ResponseField>

<ResponseField name="date" type="string">
  Date (YYYY-MM-DD)
</ResponseField>

<ResponseField name="status" type="string">
  Parsed status: `done`, `carry_forward`, `dropped`, or `no_update`
</ResponseField>

<ResponseField name="taskTitle" type="string">
  Title of the associated task
</ResponseField>

<ResponseField name="carryForwardCount" type="number">
  Number of times this task has been carried forward
</ResponseField>

<ResponseField name="createdAt" type="string">
  ISO 8601 timestamp when the status was recorded
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/eod/statuses/2026-03-06?orgId=ORG_UUID" \
    -H "X-API-Key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "status-uuid-1",
      "taskId": "task-uuid-1",
      "userId": "user-uuid-1",
      "date": "2026-03-06",
      "status": "done",
      "taskTitle": "Write newsletter draft for Client A",
      "carryForwardCount": 0,
      "createdAt": "2026-03-06T19:00:05.000Z"
    },
    {
      "id": "status-uuid-2",
      "taskId": "task-uuid-2",
      "userId": "user-uuid-1",
      "date": "2026-03-06",
      "status": "carry_forward",
      "taskTitle": "Design social media assets",
      "carryForwardCount": 2,
      "createdAt": "2026-03-06T19:00:05.000Z"
    },
    {
      "id": "status-uuid-3",
      "taskId": "task-uuid-3",
      "userId": "user-uuid-2",
      "date": "2026-03-06",
      "status": "no_update",
      "taskTitle": "Review blog post",
      "carryForwardCount": 0,
      "createdAt": "2026-03-06T19:00:05.000Z"
    }
  ]
  ```
</ResponseExample>
