POST/v1/data/reddit/user
Reddit User
Get a Reddit user's profile including karma breakdown, account age, gold status, verification, and employee status.
Target Latency
1.2s - 4.5s
Credits
1 cr/req
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
| username | string | REQUIRED | Reddit username (e.g. 'spez' or 'u/spez'). 1-100 characters. |
cURL Example
curl -X POST "https://api.datablue.dev/v1/data/reddit/user" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"username": "spez"
}'System Responses
200 OK
Request processed successfully.
401 UNAUTHORIZED
Missing or invalid API key.
429 RATE LIMIT
System capacity exceeded.
500 SYSTEM FAILURE
Internal core exception.
EXAMPLE RESPONSE
{
"success": true,
"time_taken": 1.32,
"user": {
"name": "spez",
"display_name": "spez",
"description": "CEO, Reddit",
"total_karma": 1250000,
"link_karma": 450000,
"comment_karma": 800000,
"created": "2005-06-06T00:00:00Z",
"icon": "https://styles.redditmedia.com/t5_6/spez_avatar.png",
"is_gold": true,
"verified": true,
"has_verified_email": true,
"is_employee": true,
"url": "https://www.reddit.com/user/spez/"
}
}