RedCrawler API
Account V1

Check Suspended by Name V1

Check if a Reddit user account is suspended. Returns the user's suspension status. Does not require authentication but uses Token Vault bearer if available for

GET /api/v1/my/check-suspended/{username}

Check if a Reddit user account is suspended.

Returns the user's suspension status. Does not require authentication but uses Token Vault bearer if available for higher rate limits.

Path parameters

NameTypeRequiredDescription
usernamestringYesReddit username to check.

Query parameters

NameTypeRequiredDescription
proxystringNoProxy ip:port:user:pass. Auto-resolves from Token Vault if omitted.
bearerstringNoReddit bearer token. Auto-resolves from Token Vault if omitted.

Authentication

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

Example request

cURL

curl -X GET "https://red-crawler1.p.rapidapi.com/api/v1/my/check-suspended/Motor_Tip8865?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/v1/my/check-suspended/Motor_Tip8865?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/v1/my/check-suspended/Motor_Tip8865?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": {
    "username": "Motor_Tip8865",
    "suspended": false,
    "deleted": false
  },
  "error": null,
  "timestamp": "2026-04-29T08:58:32.543572+00:00"
}

On this page