Skip to main content
GET
/
user
/
{username}
Get Reddit User Profile
curl --request GET \
  --url https://api.zilodata.com/api/v1/reddit/user/{username} \
  --header 'Authorization: Bearer <token>'
{
  "username": "science_lover",
  "karma": 50000,
  "postKarma": 30000,
  "commentKarma": 20000,
  "accountAge": 1825,
  "isVerified": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

username
string
required

Response

200 - application/json

Successful response

username
string
Example:

"science_lover"

karma
integer
Example:

50000

postKarma
integer
Example:

30000

commentKarma
integer
Example:

20000

accountAge
integer

Account age in days

Example:

1825

isVerified
boolean
Example:

false