Threads Post Information and Replies API
Get Threads post details and replies, useful for sentiment analysis, community research, and understanding conversation dynamics.
| 1 | import requests |
| 2 | |
| 3 | root = "https://ensembledata.com/apis" |
| 4 | endpoint = "/threads/post/replies" |
| 5 | params = { |
| 6 | "id": 3742087106786012244, |
| 7 | "shortcode": "DPukGWujKxU", |
| 8 | "token": "YOUR-TOKEN-HERE" |
| 9 | } |
| 10 | |
| 11 | res = requests.get(root+endpoint, params=params) |
| 12 | print(res.json()) |
| 13 |
Why Developer Teams Use Our API
Full Reply Threads
Retrieve every public reply to a Threads post to see how a conversation unfolded.
Single Post Deep Dive
Query one Threads post and get its full engagement data and reply thread.
Sentiment Ready Replies
Clean reply text is ready to feed straight into sentiment or NLP pipelines.
Brand Conversation Tracking
Follow replies on a post to see how audiences are reacting to a brand mention.
Live Engagement Numbers
Reply and like counts are pulled live at request time, not cached.
No Login Needed
Access public post and reply data without a Threads account or session.
Scrape Threads Data Effortlessly
Our replies API scrapes nested reply threads, reply authors, and engagement counts for any Threads post, good for deep community and sentiment analysis.
Post ID or URL Lookup
Query any Threads post by ID or URL to get its full reply thread.
Reply Volume Signal
See how many replies a Threads post generates to gauge real reaction.
Conversation Snapshot
Capture a Threads discussion at a point in time for later comparison.
Threads Scraping Features
Dig into Threads conversations to see what people are saying in response to any post, useful for brand monitoring and community feedback research.
- Query one Threads post by ID or URL and get its full nested reply thread in one call.
- Reconstruct exact reply nesting depth using the parent reference on each entry.
- Feed reply text directly into sentiment or NLP tools to gauge audience reaction.
- Filter replies by verified-account status using the is-verified flag on each entry.
- Track how a Threads conversation and its sentiment evolve by polling the same post over time.
Starting crawling Threads now!
Get Your API Key in Minutes
Create a free account (no credit card required) and receive an API token instantly to test endpoints, pull live data, and rapidly prototype integrations. Upgrade as your needs grow.
Get started freeDeveloper Support
Need help integrating or customizing data for your workflows? Our developer success team offers onboarding, guidance, and enterprise support to get your project production-ready.
Contact usFrequently Asked Questions
It returns detailed data for a specific Threads post along with its nested reply threads, reply authors, and engagement counts.
Yes, the full set of replies and their text is commonly used to gauge audience sentiment around a specific post or announcement.
You provide the post's ID or URL, and the endpoint returns the post details along with its full reply thread.
Yes, nested replies are included, letting you reconstruct the full conversation thread under a post.
Replies are paginated in batches with a cursor, so posts with large reply counts require multiple sequential requests to retrieve the full thread.
Yes, each reply includes a parent reference so you can reconstruct the exact nesting depth of the conversation rather than a flattened list.
Threads only exposes a single aggregate like count per reply, not a breakdown by reaction type.
There's no server-side filter for verification status; each reply includes an is-verified flag you can use to filter results client-side.
Yes, calling this endpoint periodically for the same post lets you see how the reply thread grows and how sentiment shifts over time.