Skip to main content
GET
/
v1
/
results
Get Results
curl --request GET \
  --url https://api.lobstr.io/v1/results \
  --header 'Authorization: <authorization>'
{
  "urn": "<string>",
  "post_url": "<string>",
  "text": "<string>",
  "posted_at": "<string>",
  "posted_at_timestamp": 123,
  "time_since_posted": "<string>",
  "is_repost": true,
  "post_type": "<string>",
  "image": "<string>",
  "images": "<string>",
  "author_type": "<string>",
  "author_profile_url": "<string>",
  "author_profile_id": "<string>",
  "author_public_id": "<string>",
  "author_full_name": "<string>",
  "author_first_name": "<string>",
  "author_last_name": "<string>",
  "author_headline": "<string>",
  "author_picture": "<string>",
  "author_background_image": "<string>",
  "author": "<string>",
  "num_likes": 123,
  "num_comments": 123,
  "num_shares": 123,
  "reaction_counts": "<string>",
  "hashtags": "<string>",
  "mentions": "<string>",
  "attributes": "<string>",
  "top_comments": "<string>",
  "reshared_post": "<string>",
  "media_details": "<string>",
  "share_audience": "<string>",
  "commenting_disabled": true,
  "allowed_commenters_scope": "<string>",
  "can_react": true,
  "can_post_comments": true,
  "can_share": true,
  "root_share": true,
  "profile_input_url": "<string>",
  "scraping_time": "<string>"
}
Retrieve scraped posts from your LinkedIn Posts Scraper runs.

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:
urn
string
Unique LinkedIn activity URN of the post. Example: urn:li:activity:7202146404788580353
post_url
string
Direct URL of the LinkedIn post. Example: https://www.linkedin.com/feed/update/urn:li:activity:7202146404788580353
text
string
Full text content of the post.
posted_at
string
ISO datetime when the post was published. Example: 2024-05-31T03:18:32Z
posted_at_timestamp
integer
Unix timestamp in milliseconds when the post was published. Example: 1717125512311
time_since_posted
string
Human-readable relative time since the post was published. Example: 2w
is_repost
boolean
Whether this post is a repost/share of another post. Example: false
post_type
string
Type of the post: text, image, video, article, document, poll, etc. Example: image
image
string
Main/cover image URL of the post.
images
string
JSON array of all image URLs attached to the post.
author_type
string
Type of the post author: Person or Company. Example: Person
author_profile_url
string
LinkedIn profile URL of the post author. Example: https://www.linkedin.com/in/mariela-garcia-de-fabbri
author_profile_id
string
LinkedIn internal profileId (miniProfileUrn) of the post author. Example: ACoAACDe59sBx8ChxT_OJagid6rniBLlYctSmFg
author_public_id
string
LinkedIn public slug of the post author. Example: mariela-garcia-de-fabbri
author_full_name
string
Full name of the post author. Example: Mariela Garcia de Fabbri
author_first_name
string
First name of the post author. Example: Mariela
author_last_name
string
Last name of the post author. Example: Garcia de Fabbri
author_headline
string
LinkedIn headline / occupation of the post author. Example: Peruana. Economista. Líder empresarial.
author_picture
string
Profile picture URL of the post author.
author_background_image
string
Background/banner image URL of the post author’s profile.
author
string
Full structured author object (JSON) with firstName, lastName, occupation, id, publicId, profileId, picture, backgroundImage.
num_likes
integer
Total number of likes/reactions on the post. Example: 62
num_comments
integer
Total number of comments on the post. Example: 1
num_shares
integer
Total number of shares/reposts of the post. Example: 0
reaction_counts
string
JSON breakdown of reactions by type. Example: {"LIKE": 27, "PRAISE": 3, "EMPATHY": 1}
hashtags
string
JSON array of hashtag keywords referenced in the post text. Example: ["opentowork", "hiring"]
mentions
string
JSON array of profile and company mentions in the post text, each with public_id, first_name, last_name, start, length, and type.
attributes
string
JSON array of inline attributes in the post text (profile mentions, hashtags, URLs, etc.) with character offsets.
top_comments
string
JSON array of up to 3 top comments, each with author_name, author_url, author_picture, text, date_published, and num_likes.
reshared_post
string
When this post is a repost, the original post payload (JSON) including urn, author_name, author_profile_url, and text. Null otherwise.
media_details
string
JSON object with structured media attached to the post: article, video, poll, document, or event details beyond plain image URLs.
share_audience
string
Share audience of the post. Example: PUBLIC
commenting_disabled
boolean
Whether commenting is disabled on the post. Example: false
allowed_commenters_scope
string
Audience scope allowed to comment. Example: ALL
can_react
boolean
Whether reacting to the post is allowed.
can_post_comments
boolean
Whether commenting on the post is allowed.
can_share
boolean
Whether sharing/reposting the post is allowed.
root_share
boolean
Whether this is the root share (original post, not a nested reshare).
profile_input_url
string
Original input URL used to discover this post. Example: https://www.linkedin.com/in/gaspard-lezin/
scraping_time
string
Timestamp when this record was scraped. Example: 2026-04-21T15:55:00Z