Get captions transcript for a Reddit video post.
Endpoint
/v1/reddit/posts/transcript
Query
Link to the Reddit post or direct hosted video URL whose transcript should be returned.
Optional ISO 639-1 language code (two letters) to prefer when multiple caption tracks exist.
const response = await fetch( "https://api.socialfetch.dev/v1/reddit/posts/transcript?url=https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/football_nostalgiasaints_punter_head_coach_cant/", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);