Get details for a Reddit community.
Endpoint
/v1/reddit/subreddits
Query
Subreddit name, optional `r/` prefix, or Reddit subreddit URL. Must match Reddit's exact casing.
Optional subreddit URL for the request.
const response = await fetch( "https://api.socialfetch.dev/v1/reddit/subreddits?subreddit=AbsoluteUnits", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);