Channels

Per-channel stats, mirroring the website's channel pages.

GET /api/v1/channels/{channel_id} Public

Message count, active users, first/last message timestamps, and top posters for one channel.

Path parameters

  • channel_id - Slack channel id, e.g. C0123ABCD.

Example response

{
  "channel_id": "C0123ABCD",
  "name": "ship",
  "total_messages": 1294,
  "active_users": 312,
  "first_message_ts": 1704067200000000,
  "last_message_ts": 1736092800123456,
  "top_posters": [
    { "slack_id": "U0123ABCD", "merged_name": "Orpheus", "pfp": "/pfp/U0123ABCD", "messages": 210 }
  ]
}

Example

curl https://shiptalkers.kirze.de/api/v1/channels/C0123ABCD