User

Description

Retrieve a Reddit user's public profile, including karma breakdown, creation date, and visual assets. Useful for verifying identity and analyzing user behavior.

Endpoint

GET api/v1/realtime/social/reddit/v1/user/{name}/info

Parameters

Param
Required
Param Type
Description

name

Yes

Path Param

String | The user name

chevron-rightExample Requesthashtag
curl -X GET 'https://api.webit.live/api/v1/realtime/social/reddit/v1/user/StrategySteve/info' \
--header 'Authorization: Basic <credential string>'
chevron-rightExample Responsehashtag
{
    "type": "user",
    "id": "t2_grn466k3",
    "name": "StrategySteve",
    "prefixedName": "u/StrategySteve",
    "createdAt": "2021-11-21T08:09:16.076Z",
    "title": "",
    "publicDescription": null,
    "subscribersCount": 0,
    "isVerified": true,
    "karma": {
        "total": 5900,
        "posts": 213,
        "comments": 5687
    },
    "contributionStats": {
        "postCount": 12,
        "commentCount": 1814
    },
    "avatarIcon": "https://i.redd.it/snoovatar/avatars/29bbfc8b-c2c0-447f-b716-570c5a79990b.png",
    "profileBanner": "https://styles.redditmedia.com/t5_5dalba/styles/profileBanner_ffmoabixcjz81.jpg?width=1280&height=384&frame=1&auto=webp&crop=1280:384,smart&s=64015b250ee8eedb9fc00df0d800acf0c4f2235c"
}

User Comments

Description

Fetch a paginated list of a user's comments with content information including content preview, post information and upvote count. Ideal for behavior analysis or monitoring content contributions.

Endpoint

GET api/v1/realtime/social/reddit/v1/user/{name}/comments

Parameters

Param
Required
Param Type
Description

name

Yes

Path Param

String | The user name

cursor

No

Query Param

String | The cursor to use for pagination

Pagination

  • results per page: 0-25

  • cursor path in the response: pageInfo.cursor

  • If pageInfo.cursor is null and pageInfo.hasNextPage is false, there are no additional pages available

chevron-rightExample Requesthashtag
chevron-rightExample Responsehashtag

User Posts

Description

Retrieve a user's posts with sorting and time range options. Includes title, upvote count, subreddit, and author details. Useful for analyzing posting patterns or measuring user influence.

Endpoint

GET api/v1/realtime/social/reddit/v1/user/{name}/posts

Parameters

Param
Required
Param Type
Description

name

Yes

Path Param

String | The user name

cursor

No

Query Param

String | The cursor to use for pagination

sort

No Default: NEW

Query Param

String | The sort order Available values: NEW, TOP, HOT, CONTROVERSIAL

range

No Default: ALL_TIME

Query Param

String | The time range (required when sort is TOP or CONTROVERSIAL) Available values: PAST_HOUR, TODAY, PAST_WEEK, PAST_MONTH, PAST_YEAR, ALL_TIME

Pagination

  • results per page: 0-25

  • cursor path in the response: pageInfo.cursor

  • If pageInfo.cursor is null and pageInfo.hasNextPage is false, there are no additional pages available

chevron-rightExample Requesthashtag
chevron-rightExample Responsehashtag

User Subreddits

Description

List subreddits a user actively participates in. Returns each community's name, description and subscribers count. Helps map user interests and community reach.

Endpoint

GET api/v1/realtime/social/reddit/v1/user/{name}/subreddits

Parameters

Param
Required
Param Type
Description

name

Yes

Path Param

String | The user name

chevron-rightExample Requesthashtag
chevron-rightExample Responsehashtag

Last updated