You can retrieve a list of a user's replies.
Use the GET /{threads-user-id}/replies endpoint to return a paginated list of all replies created by a user.
Here's a list of fields that can be returned for each reply.
| Name | Description |
|---|---|
| The media's ID. |
| Represents text for a Threads reply. This is optional on image, video, and carousel replies. |
| Threads username who created the post. |
| Permanent link to the post. Will be omitted if the media contains copyrighted material or has been flagged for a copyright violation. |
| The publish date and time of the post in ISO 8601 format. |
| Surface where the media is published. In the case of Threads, the value is |
| The media type for a Threads reply will be one of these values: |
| The post’s media URL. This only shows for image, video, and carousel replies. |
| Shortcode of the media. |
| URL of thumbnail. This only shows for Threads replies with video. |
| List of child posts. This only shows for carousel replies. |
| Indicates if the media is a quoted reply made by another user. |
| Media ID of the post that was quoted. |
|
|
| Media ID of the top-level post or original thread in the reply tree. |
| Media ID of the immediate parent of the reply. |
|
|
|
|
| Who can reply to your post. |
| The URL of the GIF attached to the post (if any). |
| The poll attachment for the post. |
| The topic tag for the post (if any). |
| Returns |
| Returns the URL of the post author's profile picture on Threads. |
curl -s -X GET \ "https://graph.threads.net/v1.0/me/replies?fields=id,media_product_type,media_type,media_url,permalink,username,text,topic_tag,timestamp,shortcode,thumbnail_url,children,is_quote_post,has_replies,root_post,replied_to,is_reply,is_reply_owned_by_me,reply_audience&since=2023-10-15&until=2023-11-18&limit=1&access_token=<ACCESS_TOKEN>"
{
"data": [
{
"id": "1234567",
"media_product_type": "THREADS",
"media_type": "TEXT_POST",
"permalink": "https://www.threads.net/@threadsapitestuser/post/abcdefg",
"username": "threadsapitestuser",
"text": "Reply Text",
"topic_tag": "Reply Topic",
"timestamp": "2023-10-17T05:42:03+0000",
"shortcode": "abcdefg",
"is_quote_post": false,
"has_replies": false,
"root_post": {
"id": "1234567890"
},
"replied_to": {
"id": "1234567890"
},
"is_reply": true,
"is_reply_owned_by_me": true,
"reply_audience": "EVERYONE"
},
],
"paging": {
"cursors": {
"before": "BEFORE_CURSOR",
"after": "AFTER_CURSOR"
}
}
}