scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTPost
  • POSTSearch

Threads Post

2 credits

Fetch a Threads post with comments.

POST/api/v1/tools/threads/post

Parameters

urlstringrequired

Full Threads post URL (e.g. "https://www.threads.net/@zuck/post/abc123").

maxCommentsnumber

Maximum number of comments to return. Must be a positive integer. Defaults to 200. Upper bound is determined by your plan.

Response Schema

dataobject

Threads post result

postobject

Post metadata

commentsobject[]

Array of comment objects.

countnumber

Number of comments returned

totalCommentsnumber | null

Total reply count reported by Threads

truncatedboolean

True if more comments exist than were returned. Only present when truncation occurred.

metaobject

Request metadata

toolstring

Tool name (threads-post)

creditsUsednumber

Credits consumed (2)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/threads/post \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.threads.net/@zuck/post/abc123",
"maxComments": 50
}'

Response Example

{
"data": {
"post": {
"id": "abc123",
"author": "zuck",
"text": "Threads just crossed 300 million monthly actives. Thanks to everyone building on the platform.",
"createdAt": "2026-04-10T12:00:00.000Z",
"url": "https://www.threads.net/@zuck/post/abc123",
"likes": 52400,
"replies": 4200
},
"comments": [
{
"id": "thr_cmt_001",
"parentId": "abc123",
"author": "techwriter",
"text": "The growth has been incredible. Excited to see what comes next.",
"createdAt": "2026-04-10T12:10:00.000Z",
"likes": 89
}
],
"count": 1,
"totalComments": 4200,
"truncated": true
},
"meta": {
"tool": "threads-post",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}