> ## 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 Morning Thread by Date

> Get the morning thread for a specific date

<Note>This endpoint requires API key authentication (service-to-service).</Note>

## Path Parameters

<ParamField path="date" type="string" required>
  Date in YYYY-MM-DD format
</ParamField>

## Query Parameters

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

## Response

Returns the morning thread for the specified date with submissions, or `null`.

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "thread-uuid",
    "organizationId": "org-uuid",
    "channelId": "C0123456789",
    "threadTs": "1709712000.000100",
    "date": "2026-03-06",
    "deadlinePassed": true,
    "eodCollected": false,
    "submissions": []
  }
  ```
</ResponseExample>
