Get the transcript for a Facebook post.
Endpoint
/v1/facebook/posts/transcript
Query
Link to the Facebook post or reel whose transcript should be returned.
const response = await fetch( "https://api.socialfetch.dev/v1/facebook/posts/transcript?url=https://www.facebook.com/profile.php?id=61575098504636", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);