threads_channel
threads_channel.account_stats
Threads account stats
Effects: read
Get the connected Meta Threads account's profile (username, name, avatar) and account-level insights (followers, views, likes, replies, reposts, quotes).
Arguments
No arguments.
threads_channel.hide_reply
Hide a Threads reply
Effects: write
Hide a reply on a Meta Threads post owned by the connected account. Also hides every nested reply beneath it.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
reply_id | string | yes | The Threads reply id to hide. |
threads_channel.list_posts
List Threads posts
Effects: read
List posts published by the connected Meta Threads account. Returns id, text, permalink, media_type and timestamp. Paginate with the returned after cursor.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
after | string | no | Pagination cursor from a previous call's after. |
limit | integer | no | Page size, 1-100. Default 25. |
since | string | no | ISO date (YYYY-MM-DD) lower bound. |
until | string | no | ISO date (YYYY-MM-DD) upper bound. |
threads_channel.post_insights
Threads post insights
Effects: read
Get engagement metrics for one Meta Threads post: views, likes, replies, reposts and quotes.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
post_id | string | yes | The Threads post id (from threads_channel.list_posts). |
threads_channel.publish_post
Publish post to Threads
Effects: write
Publish a post to the connected Meta Threads account. Supports TEXT, IMAGE, VIDEO and CAROUSEL (2-20 items). Text is limited to 500 characters and 5 links. Media must be given as a PUBLIC URL — Threads has no file upload endpoint. Returns the published post id and permalink.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
alt_text | string | no | Accessibility text for a single IMAGE or VIDEO post. |
carousel_items | array | no | CAROUSEL only: 2-20 items, each {media_type: IMAGE|VIDEO, image_url|video_url, alt_text?}. Order is the render order. |
image_url | string | no | Public URL of the image (JPEG/PNG, max 8MB). IMAGE only. |
media_type | string | yes | TEXT, IMAGE, VIDEO or CAROUSEL. (one of TEXT, IMAGE, VIDEO, CAROUSEL) |
reply_control | string | no | Who may reply to this post. OMIT to leave it at the account's default (everyone). (one of everyone, accounts_you_follow, mentioned_only, parent_post_author_only, followers_only) |
reply_to_id | string | no | Publish as a reply to this Threads post/reply id. |
text | string | no | Post text. Required for TEXT, optional caption otherwise. Max 500 characters and 5 links. |
video_url | string | no | Public URL of the video (MOV/MP4, max 1GB / 5 min). VIDEO only. |
threads_channel.unhide_reply
Unhide a Threads reply
Effects: write
Unhide a previously hidden reply on a Meta Threads post owned by the connected account. Also unhides its nested replies.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
reply_id | string | yes | The Threads reply id to unhide. |