Schedule Crosspost V2
Schedule a crosspost. Requires bearer token stored in Token Vault. The background scheduler publishes at the specified time using your stored bearer and proxy.
POST /api/v2/schedule/crosspost
Schedule a crosspost. Requires bearer token stored in Token Vault. The background scheduler publishes at the specified time using your stored bearer and proxy. Max 20 pending per user.
Body parameters
| Name | Type | Required | Description |
|---|---|---|---|
publish_at | string | Yes | When to publish (ISO-8601 UTC, e.g. 2026-04-11T15:00:00Z) |
crosspost_id | string | Yes | Original post ID (URL, t3_ID, or raw ID) |
title | string | Yes | Post title |
subreddit | string | Yes | Target subreddit (name, r/name, or URL) |
proxy | string | No | Proxy. Optional if stored in Token Vault. |
body | string | No | Post body — plain text or Reddit markdown both work |
spoiler | string | No | Mark as spoiler (true/false) |
flair_id | string | No | Flair template ID |
delete_after | string | No | Auto-delete post after N seconds (optional) |
flair_text | string | No | Flair text |
nsfw | string | No | Mark as NSFW (true/false) |
bearer | string | No | Bearer token. Optional if stored in Token Vault. |
brand_affiliate | string | No | Mark as brand affiliate / commercial (true/false) |
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI key |
X-RapidAPI-Host | red-crawler1.p.rapidapi.com |
Example request
cURL
curl -X POST "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 '{"publish_at": "<publish_at>", "crosspost_id": "<crosspost_id>", "title": "<title>", "subreddit": "test", "proxy": "<proxy>", "body": "<body>", "spoiler": "<spoiler>", "flair_id": "<flair_id>", "delete_after": "<delete_after>", "flair_text": "<flair_text>", "nsfw": "<nsfw>", "bearer": "<bearer>", "brand_affiliate": "<brand_affiliate>"}'JavaScript
const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/schedule/crosspost", {
method: "POST",
headers: {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
},
body: JSON.stringify({
"publish_at": "<publish_at>",
"crosspost_id": "<crosspost_id>",
"title": "<title>",
"subreddit": "test",
"proxy": "<proxy>",
"body": "<body>",
"spoiler": "<spoiler>",
"flair_id": "<flair_id>",
"delete_after": "<delete_after>",
"flair_text": "<flair_text>",
"nsfw": "<nsfw>",
"bearer": "<bearer>",
"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/crosspost"
headers = {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
"Content-Type": "application/json"
}
payload = {
"publish_at": "<publish_at>",
"crosspost_id": "<crosspost_id>",
"title": "<title>",
"subreddit": "test",
"proxy": "<proxy>",
"body": "<body>",
"spoiler": "<spoiler>",
"flair_id": "<flair_id>",
"delete_after": "<delete_after>",
"flair_text": "<flair_text>",
"nsfw": "<nsfw>",
"bearer": "<bearer>",
"brand_affiliate": "<brand_affiliate>"
}
resp = requests.post(url, headers=headers, json=payload)
print(resp.json())Example response
HTTP 200 — captured from a live call to the gateway.
{
"success": true,
"data": {
"scheduled": true,
"id": 115,
"subreddit": "RedCrawlerAPI",
"title": "Schedule Crosspost V2",
"type": "crosspost",
"publish_at": "2026-05-11T15:00:00+00:00",
"delete_after": null,
"delete_at": null,
"status": "pending"
},
"error": null,
"timestamp": "2026-04-29T17:26:49.080304+00:00"
}Schedule Poll Post V2
Schedule a poll post. Requires bearer token stored in Token Vault. The background scheduler publishes at the specified time using your stored bearer and proxy.
Schedule Link Post V2
Schedule a link post. Requires bearer token stored in Token Vault. The background scheduler publishes at the specified time using your stored bearer and proxy.