Better Fetch
Social networks6 runnable operations

Reddit reference

Subreddit metadata, feeds, search, comments, and media transcripts from public Reddit JSON and pages.

Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.

Subreddit details

Available

Subreddit details from public Reddit surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/reddit_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"subreddit_details","subreddit":"programming"}}'

Tool: reddit_scraper

Subreddit posts

Available

Subreddit posts from public Reddit surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/reddit_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"posts","subreddit":"artificial","sort":"hot","max_results":10}}'

Tool: reddit_scraper

Post comments

Available

Post comments from public Reddit surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/reddit_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"comments","post_url":"1nlqi0c","max_comments":20}}'

Tool: reddit_scraper

Post transcript

Available

Post transcript from public Reddit surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/reddit_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"transcript","post_url":"https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/football_nostalgiasaints_punter_head_coach_cant/","language":"en"}}'

Tool: reddit_scraper