Get posts from a LinkedIn company page.
Endpoint
/v1/linkedin/companies/posts
Query
LinkedIn company page URL or slug whose posts should be listed.
1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company.
const response = await fetch( "https://api.socialfetch.dev/v1/linkedin/companies/posts?url=https://www.linkedin.com/posts/sundarpichai_small-businesses-are-the-engine-of-the-american-share-7449849038398697472-iNtG", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);