Skip to main content
GET
/
api
/
morning-threads
/
by-date
/
{date}
curl "https://api.hitler.app/api/morning-threads/by-date/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "id": "thread-uuid",
  "organizationId": "org-uuid",
  "channelId": "C0123456789",
  "threadTs": "1709712000.000100",
  "date": "2026-03-06",
  "deadlinePassed": true,
  "eodCollected": false,
  "submissions": []
}
This endpoint requires API key authentication (service-to-service).

Path Parameters

date
string
required
Date in YYYY-MM-DD format

Query Parameters

orgId
string
required
Organization UUID

Response

Returns the morning thread for the specified date with submissions, or null.
curl "https://api.hitler.app/api/morning-threads/by-date/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "id": "thread-uuid",
  "organizationId": "org-uuid",
  "channelId": "C0123456789",
  "threadTs": "1709712000.000100",
  "date": "2026-03-06",
  "deadlinePassed": true,
  "eodCollected": false,
  "submissions": []
}