POST
Post Comments
/v1/threads/post/commentsFetch comments and replies on any Threads post. Returns an array of posts representing the comments.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| post_url | string | Yes | Full Threads post URL |
| limit | int | No | Max results (1-100) (default: 20) |
Example
curl -X POST https://query-data-api.notpeople.ai/v1/threads/post/comments \
-H "X-API-Key: th_live_your_key" \
-H "Content-Type: application/json" \
-d '{"post_url": "https://www.threads.net/@zuck/post/DWVrNYoCGm9", "limit": 20}'Response Schema
All responses include success, data, and usage fields.
| Field | Type | Description |
|---|---|---|
| metadata.url | string | Post URL queried |
| metadata.comments_found | int | Number of comments returned |
| metadata.elapsed_ms | int | Request duration in milliseconds |
| pk | string | Primary key identifier |
| id | string | Full post ID (pk_userId) |
| graph_id | string | Graph API ID |
| code | string | Post shortcode for URL |
| text | string | Comment text content |
| taken_at | int | Unix timestamp |
| post_type | string | Post type (typically reply) |
| username | string | Author handle |
| full_name | string | Author display name |
| user_id | string | Author user ID |
| is_verified | bool | Author verification status |
| profile_pic_url | string | Author profile picture URL |
| reply_to_user | string | null | Username being replied to |
| reply_to_post | object | null | Full post object being replied to |
| quoted_post | object | null | Quoted post data if applicable |
| like_count | int | Number of likes |
| view_count | int | Number of views |
| reply_count | int | Number of replies |
| repost_count | int | Number of reposts |
| quote_count | int | Number of quotes |
| share_count | int | Number of shares |
| is_pinned | bool | Whether the comment is pinned |
| media_type | int | Media type identifier |
| media | array | Attached media [{type, url, width, height}] |
| video_url | string | null | Direct video URL if applicable |
| image_url | string | null | Direct image URL if applicable |
Example Response
{
"success": true,
"metadata": {
"url": "https://www.threads.net/@zuck/post/DWVrNYoCGm9",
"comments_found": 1,
"elapsed_ms": 4424
},
"data": [
{
"pk": "3861190818858403380",
"id": "3861190818858403380_70590830229",
"graph_id": "17852115732644594",
"code": "DWVtJegDgY0",
"text": "Eagle Eye has become reality",
"taken_at": 1774509836,
"post_type": "reply",
"username": "wagsthewanderer",
"full_name": "Andi Wagner",
"user_id": "70590830229",
"is_verified": false,
"profile_pic_url": "https://scontent.cdninstagram.com/.../photo.jpg",
"reply_to_user": "the7bees7knees7",
"reply_to_post": null,
"quoted_post": null,
"like_count": 1,
"view_count": 0,
"reply_count": 0,
"repost_count": 0,
"quote_count": 0,
"share_count": 0,
"is_pinned": false,
"media_type": 19,
"media": [],
"video_url": null,
"image_url": null
}
],
"usage": {
"unique_posts": 85,
"limit": 6000,
"remaining": 5915
}
}Try this endpoint live
Sign up for free to try endpoints directly from the docs. No credit card required.
Create Free Account