Reddit
Get User Profile
Fetch a Reddit user's full profile by username — link karma, comment karma, account creation date, verification status, and subreddit metadata.
GET
/api/reddit/user/:nameUser profile with karma, account age, and verification status.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Reddit username (no u/ prefix) |
Response (200)
{
"name": "spez",
"total_karma": 937404,
"link_karma": 182287,
"comment_karma": 755117,
"created": "2005-06-06T04:00:00.000Z",
"is_gold": true,
"is_mod": true,
"verified": true,
"subreddit": { }
}Example
curl -H "Authorization: Bearer $TOKEN" \
"https://api.redditapis.com/api/reddit/user/spez"const response = await fetch(
"https://api.redditapis.com/api/reddit/user/spez",
{ headers: { Authorization: "Bearer TOKEN" } }
);import requests
response = requests.get(
"https://api.redditapis.com/api/reddit/user/spez",
headers={"Authorization": "Bearer TOKEN"},
)Post Comments
Fetch the full comment tree for a Reddit post by permalink — every top-level comment, nested reply, score, and author metadata in one HTTP GET call.
User Comments
Fetch a Reddit user's recent comments by username — sorted by new, top, or controversial. Includes comment body, score, subreddit, and cursor pagination.