Skip to main content
GET
/
v1
/
results
Get Results
curl --request GET \
  --url https://api.lobstr.io/v1/results \
  --header 'Authorization: <authorization>'
{
  "type": "<string>",
  "url": "<string>",
  "post_id": "<string>",
  "title": "<string>",
  "body": "<string>",
  "post_type": "<string>",
  "score": 123,
  "comment_count": 123,
  "award_count": 123,
  "author": "<string>",
  "author_id": "<string>",
  "subreddit": "<string>",
  "subreddit_prefixed_name": "<string>",
  "subreddit_id": "<string>",
  "flair": "<string>",
  "domain": "<string>",
  "language": "<string>",
  "created_at": "<string>",
  "comment_id": "<string>",
  "parent_id": "<string>",
  "depth": 123,
  "karma": 123,
  "post_karma": 123,
  "comment_karma": 123,
  "contributions": 123,
  "trophies": "<string>",
  "active_subreddits": "<string>",
  "moderated_subreddits": "<string>",
  "subreddit_description": "<string>",
  "weekly_active_users": 123,
  "weekly_contributions": 123,
  "subreddit_rules": "<string>",
  "subreddit_resources": "<string>"
}

Documentation Index

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

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

Retrieve scraped data from your Reddit Scraper runs. Each result row represents a post, comment, user profile, or subreddit — indicated by the type field.

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

squid
string
required
Hash of the squid to get results from
run
string
Hash of a specific run (optional)
page
integer
Page number (default: 1). Example: 1

Result Fields

Each result object contains the following fields:
type
string
Row type: post for the post itself, comment for a comment, user for a user profile, subreddit for subreddit metadata. Example: post
url
string
Canonical URL of the Reddit post. Example: https://www.reddit.com/r/Bitcoin/comments/1rcbgsa/crypto_beginners/
post_id
string
Reddit post ID (base36 identifier). Example: 1rcbgsa
title
string
Title of the Reddit post. Example: Crypto beginners guide
body
string
Text body of the post (for text posts) or comment text (for comment rows). Example: Here's everything you need to know as a beginner.
post_type
string
Type of post: text, image, link, video, etc. Example: text
score
integer
Upvote score of the post or comment. Example: 1842
comment_count
integer
Number of comments on the post. Populated for type='post' rows. Example: 126
award_count
integer
Number of awards received by the post. Example: 3
author
string
Username of the post or comment author. Example: Independent_Lynx715
author_id
string
Reddit ID of the author. Example: t2_19xe8ly1c0
subreddit
string
Name of the subreddit (without prefix). Example: Bitcoin
subreddit_prefixed_name
string
Subreddit name with r/ prefix. Example: r/Bitcoin
subreddit_id
string
Reddit ID of the subreddit. Example: t5_3oxtd
flair
string
Post flair label (if any). Example: Discussion
domain
string
Domain of the post content. self.xxx for text posts, or the external domain for link posts. Example: self.Bitcoin
language
string
Detected language of the post (ISO 639-1). Example: en
created_at
string
UTC timestamp when the post or comment was created. Example: 2026-04-23T11:16:27
comment_id
string
Reddit comment ID (base36). Populated for type='comment' rows only. Example: ohsv4v5
parent_id
string
Parent comment ID for nested replies. Populated for replies; null for top-level comments and post rows. Example: ohsv4v5
depth
integer
Comment nesting depth (0 = top-level comment). Null for post rows. Example: 0
karma
integer
Total karma of the user. Populated for type='user' rows only. Example: 87
post_karma
integer
Post karma of the user. Populated for type='user' rows only. Example: 17
comment_karma
integer
Comment karma of the user. Populated for type='user' rows only. Example: 70
contributions
integer
Number of contributions by the user. Populated for type='user' rows only. Example: 7
trophies
string
JSON array of trophy names earned by the user. Populated for type='user' rows only. Example: ["Five-Year Club"]
active_subreddits
string
JSON array of subreddits the user is active in (prefixed). Populated for type='user' rows only. Example: ["r/Bitcoin", "r/PostCardExchange"]
moderated_subreddits
string
JSON array of subreddits the user moderates (prefixed). Populated for type='user' rows only. Example: ["r/belikeme"]
subreddit_description
string
Description of the subreddit. Populated for type='subreddit' rows only. Example: A community dedicated to Bitcoin.
weekly_active_users
integer
Number of weekly active users in the subreddit. Populated for type='subreddit' rows only. Example: 1208799
weekly_contributions
integer
Number of weekly contributions (posts + comments) in the subreddit. Populated for type='subreddit' rows only. Example: 18683
subreddit_rules
string
JSON array of subreddit rules, each with number, title, and description. Populated for type='subreddit' rows only. Example: [{"number": "1", "title": "Be civil", "description": "..."}]
subreddit_resources
string
JSON array of community resource links, each with text and url. Populated for type='subreddit' rows only. Example: [{"text": "Wiki", "url": "https://www.reddit.com/r/Bitcoin/wiki/"}]