Daily Stats

The daily Slack-time series that backs the website's per-day charts.

GET /api/v1/daily-stats Public

Total Slack time per day, refreshed in the background. Returns the full series by default; use start and end to narrow the range (inclusive, YYYY-MM-DD).

Query parameters

  • start - start date, inclusive, YYYY-MM-DD.
  • end - end date, inclusive, YYYY-MM-DD.

Example response

{
  "points": [
    { "date": "2026-09-01", "slack_secs": 1492800 },
    { "date": "2026-09-02", "slack_secs": 1863600 }
  ]
}

Example

curl "https://shiptalkers.kirze.de/api/v1/daily-stats?start=2026-09-01&end=2026-09-07"