Account V1
My Gilded V1
Get the authenticated user's gilded (awarded) content. Returns a paginated list of the user's posts and comments that received awards. Requires bearer token (
GET /api/v1/my/gilded
Get the authenticated user's gilded (awarded) content.
Returns a paginated list of the user's posts and comments that received awards.
Requires bearer token (Token Vault or explicit).
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
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. |
time_filter | string | No | Time filter for top/controversial: hour, day, week, month, year, all. |
limit | number | No | Number of items to return (1-100, default 25). |
sort | string | No | Sort order: new, hot, top, controversial. |
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/gilded?bearer=<bearer>&proxy=<proxy>&time_filter=<time_filter>&limit=25&sort=new" \
-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/gilded?bearer=<bearer>&proxy=<proxy>&time_filter=<time_filter>&limit=25&sort=new", {
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/gilded?bearer=<bearer>&proxy=<proxy>&time_filter=<time_filter>&limit=25&sort=new"
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:35.023709+00:00"
}My Blocked V1
Get the authenticated user's blocked users list. Returns all users the account has blocked. Requires bearer token (Token Vault or explicit).
My Saved V1
Get the authenticated user's saved posts and comments. Returns a paginated list of saved content. Requires bearer token (Token Vault or explicit).