RedCrawler API
Users V1

User Comments by Name V1

Get a user's comments. Public endpoint, no auth required.

GET /api/v1/profiles/{username}/replies

Get a user's comments. Public endpoint, no auth required.

Path parameters

NameTypeRequiredDescription
usernamestringYesReddit username.

Query parameters

NameTypeRequiredDescription
sortstringNoSort: new, top, hot, controversial. Default: new.
time_filterstringNoTime filter: hour, day, week, month, year, all.
limitnumberNoNumber of results (1-250). 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/v1/profiles/Motor_Tip8865/replies?sort=new&time_filter=<time_filter>&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/v1/profiles/Motor_Tip8865/replies?sort=new&time_filter=<time_filter>&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/v1/profiles/Motor_Tip8865/replies?sort=new&time_filter=<time_filter>&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": {
    "items": [],
    "cursor": null
  },
  "error": null,
  "timestamp": "2026-04-29T08:58:52.671785+00:00"
}

On this page