Reply Management

The Threads reply management endpoints allow you to retrieve replies and conversations and hide/unhide replies. See Threads Reply Management API for more information.

GET /{threads-media-id}/replies

Retrieve a paginated list of all top-level replies for a Threads media object. See Replies for more information.

Parameters

NameDescription

access_token

string

Required.
Threads Graph API user access token.

threads-media-id

string

Required.
The path parameter of the Threads media identifier.

fields

string

Optional.
A comma-separated list of the fields to be returned.
Values: id (default), media_product_type, media_type, media_url, permalink, username, text, timestamp, shortcode, thumbnail_url, children, is_quote_post, has_replies, root_post, replied_to, is_reply, is_reply_owned_by_me, hide_status, reply_audience

reverse

Boolean

Optional.
Whether or not replies should be sorted in reverse chronological order.
Values: true (default), false

before

Optional.
Query string parameter representing a cursor that can be used for pagination, both before and after parameters cannot be passed at the same time.

after

Optional.
Query string parameter representing a cursor that can be used for pagination, both before and after parameters cannot be passed at the same time.


GET /{threads-media-id}/conversation

Retrieve a paginated and flattened list of all top-level and nested replies for a Threads media object. See Conversations for more information.

Parameters

NameDescription

access_token

string

Required.
Threads Graph API user access token.

threads-media-id

string

Required.
The path parameter of the Threads media identifier.

fields

string

Optional.
A comma-separated list of the fields to be returned.
Values: id (default), media_product_type, media_type, media_url, permalink, username, text, timestamp, shortcode, thumbnail_url, children, is_quote_post, has_replies, root_post, replied_to, is_reply, is_reply_owned_by_me, hide_status, reply_audience

reverse

Boolean

Optional.
Whether or not replies should be sorted in reverse chronological order.
Values: true (default), false

before

Optional.
Query string parameter representing a cursor that can be used for pagination, both before and after parameters cannot be passed at the same time.

after

Optional.
Query string parameter representing a cursor that can be used for pagination, both before and after parameters cannot be passed at the same time.

POST /{threads-reply-id}/manage_reply

Hide or unhide a top-level reply on your Threads post. See Hide Replies for more information.

Parameters

NameDescription

access_token

string

Required.
Threads Graph API user access token.

threads-reply-id

string

Required.
The path parameter of the Threads reply media identifier.

hide

Boolean

Required.
Set to true to hide a reply and set to false to unhide a reply.
Values: true, false