RedCrawler API
Scheduling Posts V2

Edit Scheduled Gallery V2

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

PUT /api/v2/schedule/gallery

Edit a pending scheduled gallery 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)
gallery_captionsstringNoNew comma-separated captions
bearerstringNoBearer token. Optional if stored in Token Vault.
gallery_urlsstringNoNew comma-separated image URLs (min 2, max 20)
nsfwstringNoMark as NSFW (true/false)
bodystringNoNew post body / markdown (optional)
flair_textstringNoFlair text
proxystringNoProxy. Optional if stored in Token Vault.
spoilerstringNoMark as spoiler (true/false)
subredditstringNoNew target subreddit (optional)
delete_afterstringNoAuto-delete post after N seconds
flair_idstringNoFlair template ID
titlestringNoNew post title (optional)
publish_atstringNoNew publish time (ISO-8601 UTC, optional)
brand_affiliatestringNoMark as brand affiliate / commercial (true/false)

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/gallery" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
  -H "Content-Type: application/json" \
  --data '{"id": "<id>", "gallery_captions": "<gallery_captions>", "bearer": "<bearer>", "gallery_urls": "<gallery_urls>", "nsfw": "<nsfw>", "body": "<body>", "flair_text": "<flair_text>", "proxy": "<proxy>", "spoiler": "<spoiler>", "subreddit": "test", "delete_after": "<delete_after>", "flair_id": "<flair_id>", "title": "<title>", "publish_at": "<publish_at>", "brand_affiliate": "<brand_affiliate>"}'

JavaScript

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

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/schedule/gallery"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
    "Content-Type": "application/json"
}
payload = {
  "id": "<id>",
  "gallery_captions": "<gallery_captions>",
  "bearer": "<bearer>",
  "gallery_urls": "<gallery_urls>",
  "nsfw": "<nsfw>",
  "body": "<body>",
  "flair_text": "<flair_text>",
  "proxy": "<proxy>",
  "spoiler": "<spoiler>",
  "subreddit": "test",
  "delete_after": "<delete_after>",
  "flair_id": "<flair_id>",
  "title": "<title>",
  "publish_at": "<publish_at>",
  "brand_affiliate": "<brand_affiliate>"
}
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": 116,
    "subreddit": "RedCrawlerAPI",
    "parent_id": "",
    "title": "Same galaxy, different perspective.",
    "type": "gallery",
    "publish_at": "2026-05-12T15:00:00+00:00",
    "delete_after": 1440,
    "delete_at": "2026-05-12T15:24:00+00:00",
    "status": "pending"
  },
  "error": null,
  "timestamp": "2026-04-29T17:30:40.925667+00:00"
}

On this page