Moderation V2
Approve / Disapprove User V2
Add or remove a user from the subreddit's approved contributors list. Set `approved=true` (default) to approve, `approved=false` to remove approval.
POST /api/v2/mod/user-approve
Add or remove a user from the subreddit's approved contributors list.
Set approved=true (default) to approve, approved=false to remove approval.
Body parameters
| Name | Type | Required | Description |
|---|---|---|---|
subreddit | string | Yes | Subreddit: name, r/name, URL, or t5_ ID. |
user | string | Yes | Reddit user: username, u/name, profile URL, or t2_ ID. |
approved | boolean | No | true to approve (default), false to remove approval. |
bearer | string | No | Reddit bearer token. Auto-resolves from Token Vault. |
proxy | string | No | Proxy ip:port:user:pass. 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 POST "https://red-crawler1.p.rapidapi.com/api/v2/mod/user-approve" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
-H "Content-Type: application/json" \
--data '{"subreddit": "SpaceX_Starship_News", "user": "Motor_Tip8865", "approved": "true", "bearer": "<bearer>", "proxy": "<proxy>"}'JavaScript
const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/mod/user-approve", {
method: "POST",
headers: {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
},
body: JSON.stringify({
"subreddit": "SpaceX_Starship_News",
"user": "Motor_Tip8865",
"approved": "true",
"bearer": "<bearer>",
"proxy": "<proxy>"
})
});
const data = await res.json();
console.log(data);Python
import requests
url = "https://red-crawler1.p.rapidapi.com/api/v2/mod/user-approve"
headers = {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
"Content-Type": "application/json"
}
payload = {
"subreddit": "SpaceX_Starship_News",
"user": "Motor_Tip8865",
"approved": "true",
"bearer": "<bearer>",
"proxy": "<proxy>"
}
resp = requests.post(url, headers=headers, json=payload)
print(resp.json())Example response
HTTP 200 — captured from a live call to the gateway.
{
"success": true,
"data": {
"ok": true,
"approved": false
},
"error": null,
"meta": {
"vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
"vault_remaining": "15h 46m"
},
"timestamp": "2026-04-29T16:00:51.818386+00:00"
}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
Set User Flair V2
Set or clear a user's subreddit flair (mod override). Provide `text` for custom flair text, `flair_template_id` to use a template, or both. Omit all flair fiel