My Active Subreddits V2
Fetch the subreddits the authenticated user has been most recently active in (posts or comments). Resolves the bearer's username automatically, then queries act
GET /api/v2/profile/active-subs
Fetch the subreddits the authenticated user has been most recently active in (posts or comments). Resolves the bearer's username automatically, then queries active subs. Requires bearer token.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
bearer | string | No | Your Reddit bearer token. Skip if stored in Token Vault. |
proxy | string | No | Your proxy as ip:port:user:pass. Skip if stored in Token Vault. |
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/profile/active-subs?bearer=<bearer>&proxy=<proxy>" \
-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/profile/active-subs?bearer=<bearer>&proxy=<proxy>", {
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/profile/active-subs?bearer=<bearer>&proxy=<proxy>"
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,
"active_subreddits": {
"redditorInfoByName": {
"activeSubreddits": [
{
"id": "t5_examples",
"name": "test",
"type": "PUBLIC",
"prefixedName": "r/test",
"isNsfw": false,
"publicDescriptionText": null,
"communityStats": {
"weeklyActiveUsersCount": 25846
},
"subscribersCount": 41527,
"isSubscribed": false,
"styles": {
"icon": null,
"backgroundColor": "#000000",
"legacyIcon": null
}
}
]
}
}
},
"error": null,
"meta": {
"vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
"vault_remaining": "22h 47m"
},
"timestamp": "2026-04-29T08:59:39.051499+00:00"
}Profile Comments by Name V2
Fetch a user's submitted comments. Returns comment body, score, post context, subreddit, and more. Accepts username, u/username, or profile URL.
Follow / Unfollow Profile V2
Follow or unfollow a Reddit user. Accepts username (raw, u/name, or profile URL) or direct account ID (t2_xxx). Automatically resolves the username to account I