RedCrawler API
Scheduling Posts V2

Edit Scheduled Poll V2

Edit a pending scheduled poll post. Only pending posts can be edited. All fields except 'id' are optional — only provided fields are updated.

PUT /api/v2/schedule/poll

Edit a pending scheduled poll post. Only pending posts can be edited. All fields except 'id' are optional — only provided fields are updated.

Body parameters

NameTypeRequiredDescription
idstringYesScheduled post ID (from create or list response)
subredditstringNoNew target subreddit (optional)
bodystringNoNew post body / markdown (optional)
proxystringNoProxy. Optional if stored in Token Vault.
bearerstringNoBearer token. Optional if stored in Token Vault.
flair_textstringNoFlair text
flair_idstringNoFlair template ID
publish_atstringNoNew publish time (ISO-8601 UTC, optional)
nsfwstringNoMark as NSFW (true/false)
spoilerstringNoMark as spoiler (true/false)
poll_durationstringNoNew poll duration in days (1-7)
titlestringNoNew post title (optional)
poll_optionsstringNoNew poll options (comma-separated or JSON array, min 2)
brand_affiliatestringNoMark as brand affiliate / commercial (true/false)
delete_afterstringNoAuto-delete post after N seconds

Authentication

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

Example request

cURL

curl -X PUT "https://red-crawler1.p.rapidapi.com/api/v2/schedule/poll" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
  -H "Content-Type: application/json" \
  --data '{"id": "<id>", "subreddit": "test", "body": "<body>", "proxy": "<proxy>", "bearer": "<bearer>", "flair_text": "<flair_text>", "flair_id": "<flair_id>", "publish_at": "<publish_at>", "nsfw": "<nsfw>", "spoiler": "<spoiler>", "poll_duration": "<poll_duration>", "title": "<title>", "poll_options": "<poll_options>", "brand_affiliate": "<brand_affiliate>", "delete_after": "<delete_after>"}'

JavaScript

const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/schedule/poll", {
  method: "PUT",
  headers: {
      "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
    },
    body: JSON.stringify({
  "id": "<id>",
  "subreddit": "test",
  "body": "<body>",
  "proxy": "<proxy>",
  "bearer": "<bearer>",
  "flair_text": "<flair_text>",
  "flair_id": "<flair_id>",
  "publish_at": "<publish_at>",
  "nsfw": "<nsfw>",
  "spoiler": "<spoiler>",
  "poll_duration": "<poll_duration>",
  "title": "<title>",
  "poll_options": "<poll_options>",
  "brand_affiliate": "<brand_affiliate>",
  "delete_after": "<delete_after>"
})
});
const data = await res.json();
console.log(data);

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/schedule/poll"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
    "Content-Type": "application/json"
}
payload = {
  "id": "<id>",
  "subreddit": "test",
  "body": "<body>",
  "proxy": "<proxy>",
  "bearer": "<bearer>",
  "flair_text": "<flair_text>",
  "flair_id": "<flair_id>",
  "publish_at": "<publish_at>",
  "nsfw": "<nsfw>",
  "spoiler": "<spoiler>",
  "poll_duration": "<poll_duration>",
  "title": "<title>",
  "poll_options": "<poll_options>",
  "brand_affiliate": "<brand_affiliate>",
  "delete_after": "<delete_after>"
}
resp = requests.put(url, headers=headers, json=payload)
print(resp.json())

Example response

HTTP 200 — captured from a live call to the gateway.

{
  "success": true,
  "data": {
    "updated": true,
    "id": 117,
    "subreddit": "RedCrawlerAPI",
    "parent_id": "",
    "title": "Edited Schedule Poll Post V2",
    "type": "poll",
    "publish_at": "2026-05-12T15:00:00+00:00",
    "delete_after": 3000,
    "delete_at": "2026-05-12T15:50:00+00:00",
    "status": "pending"
  },
  "error": null,
  "timestamp": "2026-04-29T17:41:08.979490+00:00"
}

On this page