My Downvoted V1
Get posts the authenticated user has downvoted. Returns a paginated list of downvoted content. This data is private and only visible to the account owner. Req
GET /api/v1/my/downvoted
Get posts the authenticated user has downvoted.
Returns a paginated list of downvoted content. This data is private and only visible to the account owner.
Requires bearer token (Token Vault or explicit).
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
time_filter | string | No | Time filter for top/controversial: hour, day, week, month, year, all. |
sort | string | No | Sort order: new, hot, top, controversial. |
bearer | string | No | Reddit bearer token. Auto-resolves from Token Vault if omitted. |
proxy | string | No | Proxy ip:port:user:pass. Auto-resolves from Token Vault if omitted. |
limit | number | No | Number of items to return (1-100, default 25). |
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/v1/my/downvoted?time_filter=<time_filter>&sort=new&bearer=<bearer>&proxy=<proxy>&limit=25" \
-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/v1/my/downvoted?time_filter=<time_filter>&sort=new&bearer=<bearer>&proxy=<proxy>&limit=25", {
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/v1/my/downvoted?time_filter=<time_filter>&sort=new&bearer=<bearer>&proxy=<proxy>&limit=25"
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": {
"items": [],
"cursor": null
},
"error": null,
"timestamp": "2026-04-29T08:58:38.751965+00:00"
}My Upvoted V1
Get posts the authenticated user has upvoted. Returns a paginated list of upvoted content. This data is private and only visible to the account owner. Require
My Posts V1
Get the authenticated user's submitted posts. Returns a paginated list of posts submitted by the user. Requires bearer token (Token Vault or explicit).