Moderation V1
Mod Queue by Subreddit Name V1
Get moderation queue items. Queue types: `modqueue`, `reports`, `spam`, `edited`, `unmoderated`. Default 25. Requires bearer token with moderator privileges.
GET /api/v1/moderate/queue/{subreddit}/{queue}
Get moderation queue items.
Queue types: modqueue, reports, spam, edited, unmoderated. Default 25.
Requires bearer token with moderator privileges.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
subreddit | string | Yes | Subreddit name (e.g. test). |
queue | string | Yes | Queue type: modqueue, reports, spam, edited, unmoderated. |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | string | No | Number of items to return (1-1000, default 25). Auto-paginates internally. |
bearer | string | No | Bearer token. Optional if stored in Token Vault. |
proxy | string | No | Proxy. Optional if stored in 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/v1/moderate/queue/test/modqueue?limit=25&bearer=<bearer>&proxy=<proxy>" \
-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/moderate/queue/test/modqueue?limit=25&bearer=<bearer>&proxy=<proxy>", {
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/moderate/queue/test/modqueue?limit=25&bearer=<bearer>&proxy=<proxy>"
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": {
"items": [],
"total": 0,
"pages_fetched": 1
},
"error": null,
"timestamp": "2026-04-29T19:04:16.114812+00:00"
}