RedCrawler API
Users & Profiles V2

My Followers V2

Fetch the authenticated user's followers. Returns the list of Reddit users who follow you, including their username, icon, and account info. Requires bearer tok

GET /api/v2/profile/followers

Fetch the authenticated user's followers. Returns the list of Reddit users who follow you, including their username, icon, and account info. Requires bearer token.

Query parameters

NameTypeRequiredDescription
bearerstringNoYour Reddit bearer token. Skip if stored in Token Vault.
proxystringNoYour proxy as ip:port:user:pass. Skip if stored in Token Vault.
limitstringNoMax followers to return (1-100, default 25).

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/profile/followers?bearer=<bearer>&proxy=<proxy>&limit=25" \
  -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/profile/followers?bearer=<bearer>&proxy=<proxy>&limit=25", {
  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/profile/followers?bearer=<bearer>&proxy=<proxy>&limit=25"
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": {
    "success": true,
    "followers": [],
    "count": 0
  },
  "error": null,
  "meta": {
    "vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
    "vault_remaining": "22h 47m"
  },
  "timestamp": "2026-04-29T08:59:51.009327+00:00"
}

On this page