Get a Reddit post by URL.
Endpoint
/v1/reddit/posts
Query
Link to the Reddit post.
const response = await fetch( "https://api.socialfetch.dev/v1/reddit/posts?url=https://www.reddit.com/r/coingecko/comments/1sgke73/coingecko_2026_spot_cex_report/", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);