![Linkedin Profile Posts Scraper [NO COOKIES] avatar](https://images.apifyusercontent.com/hB7hXeOxlDYVMGao7nIQ9tgueXsUlcC8b8w9MDGxvO4/rs:fill:250:250/cb:1/aHR0cHM6Ly9hcGlmeS1pbWFnZS11cGxvYWRzLXByb2QuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vdFhKaEQ5SFNvdTY4N2NEUTQtYWN0b3ItTFFRSVhOOU90aGY4ZjdSNW4tS1loTXZ4SVB0Vy1saW5rZWRpbl9jb2xvcmVkXzIuanBn.webp)
Linkedin Profile Posts Scraper [NO COOKIES]
Pricing
$5.00 / 1,000 results
![Linkedin Profile Posts Scraper [NO COOKIES]](https://images.apifyusercontent.com/hB7hXeOxlDYVMGao7nIQ9tgueXsUlcC8b8w9MDGxvO4/rs:fill:250:250/cb:1/aHR0cHM6Ly9hcGlmeS1pbWFnZS11cGxvYWRzLXByb2QuczMudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20vdFhKaEQ5SFNvdTY4N2NEUTQtYWN0b3ItTFFRSVhOOU90aGY4ZjdSNW4tS1loTXZ4SVB0Vy1saW5rZWRpbl9jb2xvcmVkXzIuanBn.webp)
Linkedin Profile Posts Scraper [NO COOKIES]
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
[improvement] response structure
Closed
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.

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
brikdf
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;};

that looks good, you may just add article object to that
brikdf
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

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
brikdf
Great thanks!