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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Scheduled comment ID to edit (from My Scheduled Comments response) |
parent_id | string | No | New parent: post URL/t3_ID for top-level, comment URL/t1_ID for reply |
publish_at | string | No | New publish time (ISO-8601, e.g. 2026-04-20T15:00:00Z) |
body | string | No | New comment text — plain text or Reddit markdown both work |
delete_after | string | No | Auto-delete after N seconds (e.g. 86400 for 24h), or ISO datetime |
bearer | string | No | Bearer token (auto-resolves from Token Vault if stored) |
proxy | string | No | Custom proxy (host:port:user:pass) |
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/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"
}Schedule Comment V2
Schedule a comment for future publishing. Requires bearer token stored in Token Vault. Max 20 pending scheduled items per user.
Cancel Scheduled Comment V2
Cancel a pending scheduled comment by ID. Only pending comments can be cancelled. Use 'My Scheduled Comments V2' to find the ID. Requires bearer token.