Database: Checking... Total Posts: -
Click "Apply Filters" to load posts
Access your Reddit posts data via REST API endpoints
GET
/api/r/:subreddit
token - API token (query parameter) ORX-API-Token - API token (header) ORAuthorization: Bearer TOKEN - API token (header)format - Response format: json (default), csvdateFrom - Filter from date (YYYY-MM-DD)dateTo - Filter to date (YYYY-MM-DD)keywords - Comma-separated keywordsquestionOnly - true for questions onlyminScore - Minimum score filtersortBy - Sort: created_utc, oldest, title, score, commentslimit - Number of posts to return (default: 100, max: 1000)offset - Pagination offset (default: 0)columns - Custom columns for CSV (format: key:Header,key:Header)X-API-Token: YOUR_API_TOKEN header or Authorization: Bearer YOUR_API_TOKEN header instead of query parameter
GET
/api/posts
token query parameter, X-API-Token header, or Authorization: Bearer TOKEN headersubreddit - Filter by specific subreddit (optional)GET
/api/r/:subreddit?questionOnly=true
questionOnly=true - Filter to only return posts with question titlesformat - Response format: json (default), csvX-API-Token: YOUR_API_TOKEN header or Authorization: Bearer YOUR_API_TOKEN header instead of query parameter
X-API-Token: YOUR_API_TOKEN header or Authorization: Bearer YOUR_API_TOKEN header instead of query parameter
Build your API URL with filters:
Deploy a Cloudflare Worker to fetch posts directly from Reddit's API through Cloudflare's edge network. This reduces load on your server and improves performance.
Copy the code below and deploy it as a Cloudflare Worker. This worker fetches posts directly from Reddit's public API through Cloudflare's edge network.
subreddit - Subreddit name (default: all)limit - Number of posts (default: 25, max: 100)sort - Sort order: new, hot, top (default: new)after - Pagination token (optional)Note: No environment variables needed! This worker uses Reddit's public JSON endpoints.
Add REDDIT_WORKER_URL=https://your-worker.your-subdomain.workers.dev to your .env file and restart the server. The server will use this worker to fetch posts from Reddit.
Once you've added REDDIT_WORKER_URL to your .env file and restarted the server, the "Fetch Posts" tab will automatically use this worker to fetch posts from Reddit instead of making direct requests.
Permanently delete all posts from a subreddit. This action cannot be undone.