Threads reference
Profiles, user posts, post details, keyword search, and user search from public Threads pages.
Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.
Profile
AvailableProfile from public Threads surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/threads_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"profile","username":"openai"}}'Tool: threads_scraper
User posts
AvailableUser posts from public Threads surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/threads_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"user_posts","username":"openai","max_results":10}}'Tool: threads_scraper
Post details
AvailablePost details from public Threads surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/threads_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"post","post_url":"https://www.threads.com/@openai/post/DawRu9_CH6X"}}'Tool: threads_scraper
Search by keyword
AvailableSearch by keyword from public Threads surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/threads_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"search","query":"openai","max_results":10}}'Tool: threads_scraper
Search users
AvailableSearch users from public Threads surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/threads_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"search_users","query":"shams","max_results":10}}'Tool: threads_scraper