Subreddit Feeds V2
All Feed V2
Fetch Reddit's r/all feed — posts from all subreddits combined,. The global firehose of Reddit content.
GET /api/v2/feed/all
Fetch Reddit's r/all feed — posts from all subreddits combined,. The global firehose of Reddit content.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
sort | string | No | Sort order: hot, new, top, rising, best, controversial (default: hot) |
limit | string | No | Max posts to return, auto-paginates (1-500, default: 100) |
time_filter | string | No | Time filter for top/controversial: hour, day, week, month, year, all |
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI key |
X-RapidAPI-Host | red-crawler1.p.rapidapi.com |
Example request
cURL
curl -X GET "https://red-crawler1.p.rapidapi.com/api/v2/feed/all?sort=hot&limit=25&time_filter=<time_filter>" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com"JavaScript
const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/feed/all?sort=hot&limit=25&time_filter=<time_filter>", {
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
});
const data = await res.json();
console.log(data);Python
import requests
url = "https://red-crawler1.p.rapidapi.com/api/v2/feed/all?sort=hot&limit=25&time_filter=<time_filter>"
headers = {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
resp = requests.get(url, headers=headers)
print(resp.json())Example response
HTTP 200 — captured from a live call to the gateway.
{
"success": true,
"data": {
"success": true,
"items": [
{
"node": {
"id": "c29ydGNlbGw=",
"groupId": "sortcell",
"payload": null,
"adPayload": null,
"groupRecommendationContext": null,
"cells": [
{
"isModerator": false,
"layoutOptions": [
"CARD",
"CLASSIC"
]
}
],
"crosspostCells": [
{}
]
}
},
{
"node": {
"id": "dDNfMXN5cG9wbQ==",
"groupId": "t3_1sys4r2",
"payload": null,
"adPayload": null,
"groupRecommendationContext": null,
"cells": [
{
"id": "MetadataCell-t3_1sypopm",
"createdAt": "2026-04-29T05:35:15.877000+0000",
"authorName": "u/sinfulpetalz",
"color": {
"rgbaColor": "#2B873CFF"
},
"detailsString": "r/SipsTea",
"detailsLink": "SipsTea",
"iconPath": "https://www.reddit.com/r/test/comments/1sys4r2/image_post/",
"iconShape": "ROUND",
"isJoinButtonShown": true,
"joinSubredditId": "t5_examples",
"isOverflowButtonHidden": false,
"mediaPath": null,
"mediaDomain": null,
"isRecommended": false,
"statusIndicators": [],
"isBrandAffiliate": false,
"modUserNoteLabel": null
},
{
"id": "TitleCell-t3_1sypopm",
"title": "Any modern thoughts on an old vision?",
"isVisited": false
},
"\u2026 (3 more items)"
],
"crosspostCells": [
{},
{},
"\u2026 (3 more items)"
]
}
}
],
"count": 2
},
"error": null,
"timestamp": "2026-04-29T09:00:08.847426+00:00"
}