Get posts from a Facebook profile or page.
Endpoint
/v1/facebook/profiles/posts
Query
Full public Facebook profile or page URL.
Facebook page or profile id when you have it instead of a full URL.
Opaque pagination cursor from a previous response (`data.page.nextCursor`).
const response = await fetch( "https://api.socialfetch.dev/v1/facebook/profiles/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);