RedCrawler API
Moderation V2

Report User V2

Report a user to the subreddit mods or Reddit admin. Provide a short `reason` code (e.g. 'spam', 'harassment', 'vote_manipulation') and optionally `free_text`

POST /api/v2/mod/report-user

Report a user to the subreddit mods or Reddit admin.

Provide a short reason code (e.g. 'spam', 'harassment', 'vote_manipulation') and optionally free_text with additional details shown to mods.

Body parameters

NameTypeRequiredDescription
subredditstringYesSubreddit: name, r/name, URL, or t5_ ID.
userstringYesReddit user: username, u/name, profile URL, or t2_ ID.
reasonstringYesReport reason code: spam, harassment, vote_manipulation, etc.
bearerstringNoReddit bearer token. Auto-resolves from Token Vault.
free_textstringNoAdditional details for mods.
proxystringNoProxy ip:port:user:pass. Auto-resolves from Token Vault.

Authentication

HeaderValue
X-RapidAPI-KeyYour RapidAPI key
X-RapidAPI-Hostred-crawler1.p.rapidapi.com

Example request

cURL

curl -X POST "https://red-crawler1.p.rapidapi.com/api/v2/mod/report-user" \
  -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", "reason": "spam", "bearer": "<bearer>", "free_text": "<free_text>", "proxy": "<proxy>"}'

JavaScript

const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/mod/report-user", {
  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",
  "reason": "spam",
  "bearer": "<bearer>",
  "free_text": "<free_text>",
  "proxy": "<proxy>"
})
});
const data = await res.json();
console.log(data);

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/mod/report-user"
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",
  "reason": "spam",
  "bearer": "<bearer>",
  "free_text": "<free_text>",
  "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
  },
  "error": null,
  "meta": {
    "vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
    "vault_remaining": "15h 9m"
  },
  "timestamp": "2026-04-29T16:38:20.135030+00:00"
}

On this page