Users
Get a Reddit User's Recent Comments History
Fetch a Reddit user's recent comments by username — sorted by new, top, or controversial. Includes comment body, score, subreddit, and cursor pagination.
GET
/api/reddit/user/:name/comments$0.002 / callA user's recent comments.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Reddit username |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
sort | string | No | new (default) | top | controversial |
limit | number | No | Number of comments to return, 1-100 (default 25) |
after | string | No | Pagination cursor |
Example
curl -H "Authorization: Bearer $TOKEN" \
"https://api.redditapis.com/api/reddit/user/spez/comments?sort=top"const response = await fetch(
"https://api.redditapis.com/api/reddit/user/spez/comments?sort=top",
{ headers: { Authorization: "Bearer TOKEN" } }
);import requests
response = requests.get(
"https://api.redditapis.com/api/reddit/user/spez/comments",
params={"sort": "top"},
headers={"Authorization": "Bearer TOKEN"},
)User Profile
Fetch a Reddit user's full profile by username — link karma, comment karma, account creation date, verification status, and subreddit metadata.
Search Communities
Search subreddits by name or topic — the Communities tab on reddit.com. Verified to match Reddit's UI rank order for SFW and NSFW queries, with pagination.
