Skip to main content
GET
/
api
/
morning-threads
/
today
curl "https://api.hitler.app/api/morning-threads/today?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": false,
  "eodCollected": false,
  "submissions": [
    {
      "id": "sub-uuid",
      "userId": "user-uuid",
      "messageTs": "1709712060.000200",
      "rawText": "Working on the API refactor today",
      "parsed": false,
      "submittedAt": "2026-03-06T09:01:00.000Z"
    }
  ]
}
This endpoint requires API key authentication (service-to-service).

Query Parameters

orgId
string
required
Organization UUID

Response

Returns the morning thread for today with its submissions, or null if none exists.
id
string
Morning thread UUID
organizationId
string
Organization UUID
channelId
string
Slack channel ID where the thread was posted
threadTs
string
Slack thread timestamp
date
string
Date (YYYY-MM-DD)
deadlinePassed
boolean
Whether the submission deadline has passed
submissions
array
Array of thread submissions
curl "https://api.hitler.app/api/morning-threads/today?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": false,
  "eodCollected": false,
  "submissions": [
    {
      "id": "sub-uuid",
      "userId": "user-uuid",
      "messageTs": "1709712060.000200",
      "rawText": "Working on the API refactor today",
      "parsed": false,
      "submittedAt": "2026-03-06T09:01:00.000Z"
    }
  ]
}