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
| Name | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Reddit username. |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
sort | string | No | Sort: new, top, hot, controversial. Default: new. |
time_filter | string | No | Time filter: hour, day, week, month, year, all. |
limit | number | No | Number of results (1-250). Default: 25. |
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI key |
X-RapidAPI-Host | red-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"
}