KonbiniAPI

Get user profile from Reddit with KonbiniAPI

Returns profile information for a public Reddit user including karma scores, account age, moderator status, and avatar.

This API endpoint returns profile information for a public Reddit user including karma scores, account age, moderator status, and avatar.

Perfect for

  • Community member research and karma verification
  • Account age and activity analysis for trust scoring
  • Moderator and contributor profiling

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/reddit/users/spez", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "Person",
    "id": "https://www.reddit.com/user/spez/",
    "preferredUsername": "spez",
    "name": "Steve Huffman",
    "summary": "Reddit CEO",
    "entityId": "t2_4x25quk",
    "score": 999999,
    "postScore": 555555,
    "commentScore": 444444,
    "isEmployee": true,
    "isVerified": true,
    "published": "2005-12-08T07:46:43.000Z"
  }
}