Skip to main content
The Fetch Profiles Posts endpoint creates an async task to retrieve recent posts from one or more LinkedIn profiles. You provide an array of LinkedIn person URNs and receive a task ID to poll for results.

Endpoint

Request Body

string[]
required
Non-empty array of LinkedIn person URNs (e.g., ["urn:li:person:ABC123"])
Don’t have a profile URN? If you only have a LinkedIn profile slug (e.g., williamhgates from linkedin.com/in/williamhgates), use the Fetch Profile endpoint first to retrieve the full profile data, which includes the person URN in the response.

Response

The endpoint returns immediately with a task ID:
boolean
Whether the task was created successfully
string
UUID to poll for results via Get Task Status
string
Human-readable confirmation

Polling for Results

Poll the Get Task Status endpoint until the status is completed:

Completed Response

When the task finishes, task_output contains the posts data:

Code Examples

Error Responses

FAQ

LinkedIn person URNs (urn:li:person:ABC123) can be found in LinkedIn page source, through the LinkedIn API, or from the output of the Fetch Profile endpoint. They are unique identifiers for LinkedIn members.
You can pass multiple URNs in a single request. The profile_urns array must contain at least one URN. For very large batches, consider splitting into smaller requests to ensure timely processing.
The API returns recent posts visible on the profile’s activity feed. The exact range depends on LinkedIn’s own feed rendering and typically covers the most recent posts available on the profile page.
For one-off fetches, use this endpoint. For ongoing monitoring of LinkedIn profiles and their posts, consider the Intelligence API’s People Watchlist, which automatically tracks profiles and collects new posts on a schedule.

Learn More