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
| Name | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Reddit username to check. |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
proxy | string | No | Proxy ip:port:user:pass. Auto-resolves from Token Vault if omitted. |
bearer | string | No | Reddit bearer token. Auto-resolves from Token Vault if omitted. |
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/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"
}My Account Info V1
Get the authenticated user's full account info. Returns username, karma, account age, gold status, preferences, and more. Requires bearer token (Token Vault o
Update Gender V1
Update the authenticated user's gender setting. Set `gender` to one of: MALE, FEMALE, OTHER, NONE. Requires bearer token (Token Vault or explicit).