Skip to main content
GET
/
api
/
eod
/
summary
/
{date}
curl "https://api.hitler.app/api/eod/summary/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "date": "2026-03-06",
  "organizationId": "org-uuid",
  "totalTasks": 24,
  "done": 15,
  "carryForward": 6,
  "dropped": 1,
  "noUpdate": 2,
  "completionRate": 62.5,
  "users": [
    {
      "userId": "user-uuid-1",
      "name": "Alice",
      "done": 3,
      "carryForward": 1,
      "dropped": 0,
      "noUpdate": 0
    },
    {
      "userId": "user-uuid-2",
      "name": "Bob",
      "done": 0,
      "carryForward": 0,
      "dropped": 0,
      "noUpdate": 2
    }
  ]
}
This endpoint requires API key authentication (service-to-service) or Bearer token (admin/manager).

Path Parameters

date
string
Date in YYYY-MM-DD format. Defaults to today if omitted.

Query Parameters

orgId
string
required
Organization UUID

Response

Returns the EOD summary for the requested date, including team-wide stats and per-user breakdowns.
date
string
Date (YYYY-MM-DD)
organizationId
string
Organization UUID
totalTasks
number
Total tasks tracked for the day
done
number
Tasks marked as done
carryForward
number
Tasks carried forward to the next day
dropped
number
Tasks dropped
noUpdate
number
Tasks with no status update from the user
completionRate
number
Percentage of tasks completed (0-100)
users
array
Per-user breakdown of task statuses
curl "https://api.hitler.app/api/eod/summary/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "date": "2026-03-06",
  "organizationId": "org-uuid",
  "totalTasks": 24,
  "done": 15,
  "carryForward": 6,
  "dropped": 1,
  "noUpdate": 2,
  "completionRate": 62.5,
  "users": [
    {
      "userId": "user-uuid-1",
      "name": "Alice",
      "done": 3,
      "carryForward": 1,
      "dropped": 0,
      "noUpdate": 0
    },
    {
      "userId": "user-uuid-2",
      "name": "Bob",
      "done": 0,
      "carryForward": 0,
      "dropped": 0,
      "noUpdate": 2
    }
  ]
}