RedCrawler API
Scheduling Posts V2

My Scheduled Posts V2

List all scheduled posts for the authenticated user. Returns pending, posting, posted, and failed items sorted by publish time.

GET /api/v2/schedule/list

List all scheduled posts for the authenticated user. Returns pending, posting, posted, and failed items sorted by publish time.

Query parameters

NameTypeRequiredDescription
bearerstringNoBearer token. Optional if stored in Token Vault.
proxystringNoProxy. Optional if stored in Token Vault.

Authentication

HeaderValue
X-RapidAPI-KeyYour RapidAPI key
X-RapidAPI-Hostred-crawler1.p.rapidapi.com

Example request

cURL

curl -X GET "https://red-crawler1.p.rapidapi.com/api/v2/schedule/list?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/schedule/list?bearer=<bearer>&proxy=<proxy>", {
  method: "GET",
  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/schedule/list?bearer=<bearer>&proxy=<proxy>"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
resp = requests.get(url, headers=headers)
print(resp.json())

Example response

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

{
  "success": true,
  "data": {
    "items": [
      {
        "id": 113,
        "subreddit": "RedCrawlerAPI",
        "parent_id": "",
        "title": "Schedule Text Post V2",
        "type": "text",
        "publish_at": "2026-05-11T15:00:00+00:00",
        "status": "pending",
        "reddit_post_id": null,
        "last_error": null,
        "created_at": "2026-04-29T17:11:50.499894+00:00",
        "delete_after": null,
        "delete_at": null
      }
    ],
    "count": 1
  },
  "error": null,
  "timestamp": "2026-04-29T17:12:17.341562+00:00"
}

On this page