Moderation V2
Mod User Card V2
Fetch the moderator-view user card for a redditor within a subreddit. Returns ban/mute/approved/moderator status, subreddit karma, contribution stats, mod permi
GET /api/v2/mod/user-card
Fetch the moderator-view user card for a redditor within a subreddit. Returns ban/mute/approved/moderator status, subreddit karma, contribution stats, mod permissions, and the full block.
Resolves subreddit name → t5_ ID and username → t2_ ID automatically. Accepts subreddit names, r/name, URLs, or t5_ IDs. Accepts usernames, u/name, profile URLs, or t2_ IDs. Requires mod permissions in the target subreddit.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
user | string | Yes | Reddit user: username, u/name, profile URL, or t2_ ID. |
subreddit | string | Yes | Subreddit: name, r/name, URL, or t5_ ID. |
proxy | string | No | Proxy ip:port:user:pass. Auto-resolves from Token Vault. |
bearer | string | No | Reddit bearer token. Auto-resolves from 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/mod/user-card?user=Motor_Tip8865&subreddit=SpaceX_Starship_News&proxy=<proxy>&bearer=<bearer>" \
-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/mod/user-card?user=Motor_Tip8865&subreddit=SpaceX_Starship_News&proxy=<proxy>&bearer=<bearer>", {
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/mod/user-card?user=Motor_Tip8865&subreddit=SpaceX_Starship_News&proxy=<proxy>&bearer=<bearer>"
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": {
"subreddit_id": null,
"is_banned": false,
"ban_reason": null,
"ban_note": null,
"ban_expires_at": null,
"banned_at": null,
"is_muted": false,
"mute_expires_at": null,
"is_approved": false,
"is_moderator": false,
"mod_permissions": null,
"redditor": {
"id": null,
"name": "Motor_Tip8865",
"karma": {
"total": 1,
"fromPosts": 1,
"fromComments": 0
},
"subreddit_karma": {
"fromComments": 0,
"fromPosts": 0
},
"contribution_stats": {}
},
"subreddit_info": {
"__typename": "UnavailableSubreddit"
}
},
"error": null,
"meta": {
"vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
"vault_remaining": "22h 46m"
},
"timestamp": "2026-04-29T09:00:29.427985+00:00"
}