RedCrawler API
Voting V2

Vote on Comment V2

Vote on a comment: upvote, downvote, or remove vote. Requires bearer token.

POST /api/v2/comment/vote

Vote on a comment: upvote, downvote, or remove vote. Requires bearer token.

Query parameters

NameTypeRequiredDescription
comment_idstringYesComment URL, t1_ID, or raw ID (e.g. m5abc12, t1_m5abc12, reddit.com/.../comment/m5abc12/)
votestringYesVote direction: upvote, downvote, or remove
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 POST "https://red-crawler1.p.rapidapi.com/api/v2/comment/vote?comment_id=xyz789&vote=<vote>&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/vote?comment_id=xyz789&vote=<vote>&bearer=<bearer>&proxy=<proxy>", {
  method: "POST",
  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/vote?comment_id=xyz789&vote=<vote>&bearer=<bearer>&proxy=<proxy>"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
resp = requests.post(url, headers=headers)
print(resp.json())

Example response

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

{
  "success": true,
  "data": {
    "success": true,
    "vote": "UP",
    "comment_id": "t1_offp5o2",
    "result": {
      "updateCommentVoteState": {
        "ok": true,
        "errors": null
      }
    }
  },
  "error": null,
  "meta": {
    "vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
    "vault_remaining": "13h 36m"
  },
  "timestamp": "2026-04-29T18:11:17.715547+00:00"
}

On this page