Reddit Scraper

ENDPOINTS
GET/search/users

Search Users

Search Reddit accounts by keyword: karma, cake day, avatar and profile.

QUERY PARAMS

Search phrase.

Example: Arnold Schwarzenegger

Opaque pagination cursor. Pass the next_cursor value from the previous page to get the next one. Omit for the first page.

Results per page.

Default: 25

Allowed values: 1-100

Include NSFW profiles.

Default: false

Allowed values: true, false

{
  "query": "Arnold Schwarzenegger",
  "sort": "relevance",
  "time": null,
  "users": [
    {
      "id": "5gsuu4va",
      "username": "Cherrymus",
      "link": "https://www.reddit.com/user/Cherrymus/",
      "created_at": "2020-06-13T11:31:01Z",
      "avatar": "https://i.redd.it/snoovatar/avatars/83717337-8efb-4406-bfe0-c4fa493cdebd-headshot.png",
      "snoovatar": "https://i.redd.it/snoovatar/avatars/83717337-8efb-4406-bfe0-c4fa493cdebd.png",
      "karma": {
        "total": null,
        "post": 151683,
        "comment": 84989,
        "awardee": null,
        "awarder": null
      },
      "flags": {
        "is_premium": false,
        "is_moderator": false,
        "is_employee": false,
        "is_verified": true,
        "has_verified_email": false,
        "is_suspended": false,
        "accepts_followers": false,
        "accepts_chats": null,
        "accepts_private_messages": null,
        "hides_from_robots": true
      },
      "profile": {
        "title": null,
        "description": "arnold schwarzenegger commented my post once",
        "banner": null,
        "icon": "https://i.redd.it/snoovatar/avatars/83717337-8efb-4406-bfe0-c4fa493cdebd-headshot.png",
        "follower_count": 0,
        "is_nsfw": false,
        "previous_names": [],
        "primary_color": null,
        "key_color": null
      }
    },
    {
      "id": "2uwm4",
      "username": "arnoldschwarzenegger",
      "link": "https://www.reddit.com/user/arnoldschwarzenegger/",
      "created_at": "2007-09-29T22:25:42Z",
      "avatar": "https://www.redditstatic.com/avatars/defaults/v2/avatar_default_4.png",
      "snoovatar": null,
      "karma": {
        "total": null,
        "post": 1,
        "comment": 0,
        "awardee": null,
        "awarder": null
      },
      "flags": {
        "is_premium": false,
        "is_moderator": false,
        "is_employee": false,
        "is_verified": true,
        "has_verified_email": false,
        "is_suspended": false,
        "accepts_followers": true,
        "accepts_chats": null,
        "accepts_private_messages": null,
        "hides_from_robots": false
      },
      "profile": {
        "title": null,
        "description": null,
        "banner": null,
        "icon": "https://www.redditstatic.com/avatars/defaults/v2/avatar_default_4.png",
        "follower_count": 0,
        "is_nsfw": false,
        "previous_names": [],
        "primary_color": null,
        "key_color": null
      }
    }
  ],
  "next_cursor": null,
  "has_more": false
}