List posts from a LinkedIn person profile.
Endpoint
/v1/linkedin/profiles/posts
Query
LinkedIn profile URL or vanity handle whose public posts should be listed.
Optional start of the date range for posts to include.
Optional end of the date range for posts to include.
When true, return only posts created by the profile owner.
Maximum posts to return (default 10).
const response = await fetch( "https://api.socialfetch.dev/v1/linkedin/profiles/posts?url=https://www.linkedin.com/in/marclouvion&limit=5", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);