Short answer: You can get channel history in Slack by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Slack Get Channel History action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Channel ID channel | string | Required | Channel ID. e.g. "C1234567890" |
Limit limit | string | Optional | Number of messages (max 1000) |
Oldest oldest | string | Optional | Only messages after this Unix timestamp |
Latest latest | string | Optional | Only messages before this Unix timestamp |
{"channel": "C1234567890","limit": "100","oldest": "e.g. 1700000000.000000","latest": "e.g. 1700100000.000000"}
{"ok": true,"has_more": false,"messages": [{"ts": "1700000000.000100","text": "Hello team!","type": "message","user": "U123"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.