Users & Profiles V2
Subreddit Flair Policy V2
Check a subreddit's user-flair policy. Returns only two booleans: isEnabled (subreddit has user flair on) and isSelfAssignable (users can pick their own flair).
GET /api/v2/profile/flair-settings
Check a subreddit's user-flair policy. Returns only two booleans: isEnabled (subreddit has user flair on) and isSelfAssignable (users can pick their own flair). Does NOT return the list of flair templates — for actual flair templates use the Subreddit Flairs V2 endpoint. Requires bearer.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
subreddit | string | Yes | Subreddit name (accepts r/name, URL, or raw name like test). |
bearer | string | No | Your Reddit bearer token. Skip if stored in Token Vault. |
proxy | string | No | Your proxy as ip:port:user:pass. Skip 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/v2/profile/flair-settings?subreddit=test&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/v2/profile/flair-settings?subreddit=test&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/v2/profile/flair-settings?subreddit=test&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": {
"success": true,
"flair_settings": {
"subredditInfoByName": {
"authorFlairSettings": {
"isEnabled": true,
"isSelfAssignable": true
}
}
}
},
"error": null,
"meta": {
"vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
"vault_remaining": "22h 47m"
},
"timestamp": "2026-04-29T08:59:45.719490+00:00"
}