Threads Post
2 creditsFetch a Threads post with comments.
/api/v1/tools/threads/postParameters
Full Threads post URL (e.g. "https://www.threads.net/@zuck/post/abc123").
Maximum number of comments to return. Must be a positive integer. Defaults to 200. Upper bound is determined by your plan.
Fields to include per reply. Omit for defaults: pk, code, takenAt, content, likeCount, replyCount, repostCount, author, isReply, replyToAuthor. Available fields: pk, code, takenAt, content, likeCount, replyCount, repostCount, viewsCount, author, isReply, replyToAuthor. Use ["*"] for all fields.
Response Schema
Threads post result
Post metadata
Array of comment objects.
Number of comments returned
Total reply count reported by Threads
True if more comments exist than were returned. Only present when truncation occurred.
Request metadata
Tool name (threads-post)
Credits consumed (2)
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"}}