RedCrawler API
Moderation V2

Post Flair (Mod) V2

Set or clear a post's flair as a moderator override. Provide `text` for custom flair text, `flair_template_id` to use a template, or both. Omit all flair field

POST /api/v2/mod/post-flair

Set or clear a post's flair as a moderator override.

Provide text for custom flair text, flair_template_id to use a template, or both. Omit all flair fields to clear the flair.

Accepts post URLs, t3_ fullnames, or bare post IDs.

Body parameters

NameTypeRequiredDescription
poststringYesPost: URL, t3_ fullname, or bare post ID.
bearerstringNoReddit bearer token. Auto-resolves from Token Vault.
flair_template_idstringNoFlair template UUID from the subreddit's flair list.
textstringNoCustom flair text. Omit to use template only or clear flair.
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/post-flair" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
  -H "Content-Type: application/json" \
  --data '{"post": "t3_1sys4r2", "bearer": "<bearer>", "flair_template_id": "<flair_template_id>", "text": "<text>", "proxy": "<proxy>"}'

JavaScript

const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/mod/post-flair", {
  method: "POST",
  headers: {
      "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
    },
    body: JSON.stringify({
  "post": "t3_1sys4r2",
  "bearer": "<bearer>",
  "flair_template_id": "<flair_template_id>",
  "text": "<text>",
  "proxy": "<proxy>"
})
});
const data = await res.json();
console.log(data);

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/mod/post-flair"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
    "Content-Type": "application/json"
}
payload = {
  "post": "t3_1sys4r2",
  "bearer": "<bearer>",
  "flair_template_id": "<flair_template_id>",
  "text": "<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,
    "post_id": "t3_1sz24fg"
  },
  "error": null,
  "meta": {
    "vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
    "vault_remaining": "15h 58m"
  },
  "timestamp": "2026-04-29T15:49:09.698509+00:00"
}

On this page