Linkedin Profile Posts Scraper [NO COOKIES] avatar
Linkedin Profile Posts Scraper [NO COOKIES]

Pricing

$5.00 / 1,000 results

Go to Store
Linkedin Profile Posts Scraper [NO COOKIES]

Linkedin Profile Posts Scraper [NO COOKIES]

Developed by

API Maestro

API Maestro

Maintained by Community

Scrape LinkedIn posts data for a given LinkedIn profile including post content, reactions, comments count, and media attachments

4.4 (11)

Pricing

$5.00 / 1,000 results

125

Total users

1.9k

Monthly users

1.1k

Runs succeeded

98%

Issues response

1.5 hours

Last modified

4 hours ago

BR

[improvement] response structure

Closed

brikdf opened this issue
8 days ago

Would be wonderful if we could have a structure doc somewhere of the response. I also notice that the response has a field media where images and videos are included but document is not inside media.

APIMaestro avatar

media can be video or picture. For document, if it exist it will be shown on json as separate object "documents":{} I'll try to add that on info or in a doc. Thanks

BR

brikdf

8 days ago

cool thanks, currently I have this defined on my end

type ApifyLinkedInPost = {
urn: string;
full_urn: string;
posted_at: {
date: string;
relative: string;
timestamp: number;
};
text: string;
url: string;
post_type: string;
author: {
first_name: string;
last_name: string;
headline: string;
username: string;
profile_url: string;
profile_picture: string;
};
stats: {
total_reactions: number;
like: number;
support: number;
love: number;
insight: number;
celebrate: number;
comments: number;
reposts: number;
};
media?: {
type: 'image' | 'images' | 'video';
url: string;
images?: {
url: string;
width: number;
height: number;
}[];
thumbnail?: string;
};
document?: {
title: string;
page_count: number;
url: string;
thumbnail: string;
};
reshared_post?: ApifyLinkedInPost | {
urn: string;
posted_at: {
date: string;
relative: string;
timestamp: number;
};
text: string;
url: string;
post_type: string;
author: {
first_name: string;
last_name: string;
headline: string;
username: string;
profile_url: string;
profile_picture: string;
};
stats: {
total_reactions: number;
like: number;
support: number;
love: number;
insight: number;
celebrate: number;
comments: number;
reposts: number;
};
media?: {
type: 'image' | 'images' | 'video';
url: string;
thumbnail?: string;
};
};
pagination_token: string;
};
APIMaestro avatar

that looks good, you may just add article object to that

BR

brikdf

8 days ago

on media or what do you mean? I guess I have no example yet with article attachment, so if you could provide the object structure that would be wonderful

APIMaestro avatar

no it's also separate, we get it if post has an article . e.g : "article": { "url": "...", "title": "....", "subtitle": "....", "thumbnail": "...." } }. ---
structure is added to the info page

BR

brikdf

5 days ago

Great thanks!