Get comments on a Reddit post.
Endpoint
/v1/reddit/posts/comments
Query
Link to the Reddit post whose comments should be listed.
Opaque cursor from a previous response to fetch another page of comments or replies.
When true, requests a lighter response shape when available.
const response = await fetch( "https://api.socialfetch.dev/v1/reddit/posts/comments?url=https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);