discord_get_forum_post
Retrieve a forum post's title, archived/locked state, tags, message count, and recent messages. Pass the thread ID to get a JSON object.
Instructions
Get a forum post's details (title, archived/locked state, applied tags, message count) plus its recent messages, oldest-to-newest. Read-only. Pass the post's thread_id. Returns a JSON object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many recent messages to include (1–100). Default 20. | |
| thread_id | Yes | ID (snowflake) of the forum post (thread). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | Yes | ||
| locked | Yes | ||
| archived | Yes | ||
| messages | Yes | ||
| createdAt | Yes | ||
| appliedTags | Yes | ||
| messageCount | Yes |