Get posts from a Facebook group.
Endpoint
/v1/facebook/groups/posts
Query
Public Facebook group URL whose posts should be listed.
Optional sort order for the returned posts.
Opaque pagination cursor from a previous response (`data.page.nextCursor`).
const response = await fetch( "https://api.socialfetch.dev/v1/facebook/groups/posts?url=https://www.facebook.com/profile.php?id=61575098504636", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);