Better Fetch
Social networks5 runnable operations

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

Available

Profile 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

Available

User 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

Available

Post 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 users

Available

Search 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