Skip to main content
POST
/
api
/
reddit
/
user
/reddit/user
curl --request POST \
  --url https://api.anysite.io/api/reddit/user \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "username": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@reddit_user",
    "title": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "description": "<string>",
    "link_karma": 123,
    "comment_karma": 123,
    "total_karma": 123,
    "created_at": 123,
    "is_employee": false,
    "is_gold": false,
    "is_mod": false,
    "is_verified": false,
    "has_verified_email": false,
    "accept_followers": false,
    "hide_from_robots": false
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
username
string
required

Reddit username

Minimum string length: 1
Example:

"Confident_Rough_2846"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@reddit_user
title
string | null
image
string | null
cover
string | null
description
string | null
comment_karma
integer | null
total_karma
integer | null
created_at
integer | null
is_employee
boolean
default:false
is_gold
boolean
default:false
is_mod
boolean
default:false
is_verified
boolean
default:false
has_verified_email
boolean
default:false
accept_followers
boolean
default:false
hide_from_robots
boolean
default:false