Get posts from a LinkedIn 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.
const response = await fetch( "https://api.socialfetch.dev/v1/linkedin/profiles/posts?url=https://www.linkedin.com/in/marclouvion", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);