RedCrawler API
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

NameTypeRequiredDescription
idstringYesScheduled post ID (from create or list response)
delete_afterstringNoAuto-delete post after N seconds
bearerstringNoBearer token. Optional if stored in Token Vault.
bodystringNoNew post body / markdown (optional)
subredditstringNoNew target subreddit (optional)
brand_affiliatestringNoMark as brand affiliate / commercial (true/false)
publish_atstringNoNew publish time (ISO-8601 UTC, optional)
flair_idstringNoFlair template ID
nsfwstringNoMark as NSFW (true/false)
flair_textstringNoFlair text
crosspost_idstringNoNew original post ID (URL, t3_ID, or raw ID)
spoilerstringNoMark as spoiler (true/false)
proxystringNoProxy. Optional if stored in Token Vault.
titlestringNoNew post title (optional)

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/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"
}

On this page