Better Fetch
FacebookAvailable now

Facebook Group posts

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

Runnable Better Fetch operation

This capability runs through facebook_posts_scraper and returns normalized JSON through the tool workspace, REST runner, or MCP.

Facebook exposes at most three public group posts; indexed fallback preserves stable post URLs when the login overlay hides the feed.

REST

curl -sS -X POST "https://betterfetch.co/api/tools/facebook_posts_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input": {"group_url":"https://www.facebook.com/groups/742354120555345/","max_results":3}}'

MCP

1. Call search_tools for "Facebook Group posts"
2. Call run_tool with:
   name: "facebook_posts_scraper"
   input: {
  "group_url": "https://www.facebook.com/groups/742354120555345/",
  "max_results": 3
}