Scheduling Posts V2
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.
PUT /api/v2/schedule/crosspost
Edit a pending scheduled crosspost 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) |
delete_after | string | No | Auto-delete post after N seconds |
bearer | string | No | Bearer token. Optional if stored in Token Vault. |
body | string | No | New post body / markdown (optional) |
subreddit | string | No | New target subreddit (optional) |
brand_affiliate | string | No | Mark as brand affiliate / commercial (true/false) |
publish_at | string | No | New publish time (ISO-8601 UTC, optional) |
flair_id | string | No | Flair template ID |
nsfw | string | No | Mark as NSFW (true/false) |
flair_text | string | No | Flair text |
crosspost_id | string | No | New original post ID (URL, t3_ID, or raw ID) |
spoiler | string | No | Mark as spoiler (true/false) |
proxy | string | No | Proxy. Optional if stored in Token Vault. |
title | string | No | New post title (optional) |
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/crosspost" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
-H "Content-Type: application/json" \
--data '{"id": "<id>", "delete_after": "<delete_after>", "bearer": "<bearer>", "body": "<body>", "subreddit": "test", "brand_affiliate": "<brand_affiliate>", "publish_at": "<publish_at>", "flair_id": "<flair_id>", "nsfw": "<nsfw>", "flair_text": "<flair_text>", "crosspost_id": "<crosspost_id>", "spoiler": "<spoiler>", "proxy": "<proxy>", "title": "<title>"}'JavaScript
const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/schedule/crosspost", {
method: "PUT",
headers: {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
},
body: JSON.stringify({
"id": "<id>",
"delete_after": "<delete_after>",
"bearer": "<bearer>",
"body": "<body>",
"subreddit": "test",
"brand_affiliate": "<brand_affiliate>",
"publish_at": "<publish_at>",
"flair_id": "<flair_id>",
"nsfw": "<nsfw>",
"flair_text": "<flair_text>",
"crosspost_id": "<crosspost_id>",
"spoiler": "<spoiler>",
"proxy": "<proxy>",
"title": "<title>"
})
});
const data = await res.json();
console.log(data);Python
import requests
url = "https://red-crawler1.p.rapidapi.com/api/v2/schedule/crosspost"
headers = {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
"Content-Type": "application/json"
}
payload = {
"id": "<id>",
"delete_after": "<delete_after>",
"bearer": "<bearer>",
"body": "<body>",
"subreddit": "test",
"brand_affiliate": "<brand_affiliate>",
"publish_at": "<publish_at>",
"flair_id": "<flair_id>",
"nsfw": "<nsfw>",
"flair_text": "<flair_text>",
"crosspost_id": "<crosspost_id>",
"spoiler": "<spoiler>",
"proxy": "<proxy>",
"title": "<title>"
}
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": 115,
"subreddit": "RedCrawlerAPI",
"parent_id": "",
"title": "Schedule Crosspost V2",
"type": "crosspost",
"publish_at": "2026-05-05T15:00:00+00:00",
"delete_after": null,
"delete_at": null,
"status": "pending"
},
"error": null,
"timestamp": "2026-04-29T17:27:39.816072+00:00"
}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.
Edit Scheduled Link V2
Edit a pending scheduled link post. Only pending posts can be edited. All fields except 'id' are optional — only provided fields are updated.