POST/api/v1/user-profileUsers

User 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.

Get free API key →

Request Parameters

Send as a JSON body in your POST request.

ParameterTypeRequired
usernamestringYes

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 →

Related Endpoints

Start using /user-profile now

Free tier — 30 requests, no credit card required.