DeepAgent

Reddit

Basic readonly Reddit API for getting top/hot/new/rising posts from subreddits.

Install

npm install @deepagent/reddit
yarn add @deepagent/reddit
pnpm add @deepagent/reddit

Usage

import { RedditClient } from '@deepagent/reddit'

const reddit = new RedditClient()
const result = await reddit.getSubredditPosts({
  subreddit: 'AskReddit',
  type: 'hot',
  limit: 10
})

On this page