RedCrawler API
Scheduling Comments V2

Edit Scheduled Comment V2

Edit a pending scheduled comment. Can update text, parent (post/comment to reply to), publish time, and auto-delete timer. Only pending comments can be edited.

PUT /api/v2/comment/scheduled-edit

Edit a pending scheduled comment. Can update text, parent (post/comment to reply to), publish time, and auto-delete timer. Only pending comments can be edited. Requires bearer token.

Query parameters

NameTypeRequiredDescription
idstringYesScheduled comment ID to edit (from My Scheduled Comments response)
parent_idstringNoNew parent: post URL/t3_ID for top-level, comment URL/t1_ID for reply
publish_atstringNoNew publish time (ISO-8601, e.g. 2026-04-20T15:00:00Z)
bodystringNoNew comment text — plain text or Reddit markdown both work
delete_afterstringNoAuto-delete after N seconds (e.g. 86400 for 24h), or ISO datetime
bearerstringNoBearer token (auto-resolves from Token Vault if stored)
proxystringNoCustom proxy (host:port:user:pass)

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/comment/scheduled-edit?id=<id>&parent_id=<parent_id>&publish_at=<publish_at>&body=<body>&delete_after=<delete_after>&bearer=<bearer>&proxy=<proxy>" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com"

JavaScript

const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/comment/scheduled-edit?id=<id>&parent_id=<parent_id>&publish_at=<publish_at>&body=<body>&delete_after=<delete_after>&bearer=<bearer>&proxy=<proxy>", {
  method: "PUT",
  headers: {
      "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
    }
});
const data = await res.json();
console.log(data);

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/comment/scheduled-edit?id=<id>&parent_id=<parent_id>&publish_at=<publish_at>&body=<body>&delete_after=<delete_after>&bearer=<bearer>&proxy=<proxy>"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
resp = requests.put(url, headers=headers)
print(resp.json())

Example response

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

{
  "success": true,
  "data": {
    "updated": true,
    "id": 112,
    "subreddit": "",
    "parent_id": "t3_1sz4owu",
    "title": "",
    "type": "comment",
    "publish_at": "2026-04-29T17:15:00+00:00",
    "delete_after": 86400,
    "delete_at": "2026-04-30T17:15:00+00:00",
    "status": "pending"
  },
  "error": null,
  "timestamp": "2026-04-29T17:06:34.127551+00:00"
}

On this page