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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Scheduled post ID (from create or list response) |
subreddit | string | No | New target subreddit (optional) |
body | string | No | New post body / markdown (optional) |
proxy | string | No | Proxy. Optional if stored in Token Vault. |
bearer | string | No | Bearer token. Optional if stored in Token Vault. |
flair_text | string | No | Flair text |
flair_id | string | No | Flair template ID |
publish_at | string | No | New publish time (ISO-8601 UTC, optional) |
nsfw | string | No | Mark as NSFW (true/false) |
spoiler | string | No | Mark as spoiler (true/false) |
poll_duration | string | No | New poll duration in days (1-7) |
title | string | No | New post title (optional) |
poll_options | string | No | New poll options (comma-separated or JSON array, min 2) |
brand_affiliate | string | No | Mark as brand affiliate / commercial (true/false) |
delete_after | string | No | Auto-delete post after N seconds |
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI key |
X-RapidAPI-Host | red-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"
}Cancel Scheduled Post V2
Cancel and delete a pending scheduled post by ID. Only pending posts can be cancelled. Use My Scheduled Posts to find the ID.
Edit Scheduled Crosspost V2
Edit a pending scheduled crosspost post. Only pending posts can be edited. All fields except 'id' are optional — only provided fields are updated.