POST
/api/v1/user-profileUsersUser Profile
Retrieve public profile information for a Reddit user, including their comment/post karma, account creation date, bio, and avatar.
Ready to try it?
Create a free account — 30 requests included, no credit card.
Request Parameters
Send as a JSON body in your POST request.
| Parameter | Type | Required |
|---|---|---|
| username | string | Yes |
Code Examples
curl
curl -X POST https://subscraper.dev/api/v1/user-profile \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"username": "shittymorph"
}'TypeScript SDK
const profile = await client.getUserProfile({
username: "shittymorph"
});Install the SDK →Sample Response
{
"username": "shittymorph",
"id": "16zxq1",
"createdUtc": 1483228800,
"karma": {
"post": 54200,
"comment": 2150000,
"total": 2204200
},
"isEmployee": false,
"isGold": true,
"isMod": true,
"iconImg": "https://styles.redditmedia.com/..."
}Common Use Cases
- Verifying user credibility (checking karma/age)
- Building user reputation systems
- Identifying influencers in specific niches
- Bot/spam detection heuristics
Credits
Each call to /api/v1/user-profile uses 1 credit. Free tier includes 30 credits. View pricing →
Related Tools & Guides
All developer tools →Sandbox→
API Playground
Test user profile retrieval and karma extraction.
Product→
Reddit User Profile API
Dedicated endpoint for author reputation and karma metrics.
Use Case→
Reddit API for Lead Generation
Analyze high-intent contributors and niche influencers.
Use Case→
Reddit API for Social Listening
Track user posting history and sentiment over time.
Related Endpoints
Start using /user-profile now
Free tier — 30 requests, no credit card required.