st.searchPosts
This action allows you to search for posts applying various filtering criteria.
Constraints
⏺️ Root Start: allowed.
⬆️ Parent Actions: N/A.
⬇️ Child Actions: st.doForPosts.
Parameters
{
"actionType": "st.searchPosts",
"label": "climateTechSearch1",
"term": "climate tech",
"limit": 20,
"filter": {
"sort": "latest",
"datePosted": "pastWeek",
"contentType": "images",
"postedBy": ["firstConnections", "peopleYouFollow"],
"fromMembers": [
{ "name": "Bill Gates", "urn": "urn:li:member:251749025" }
],
"fromCompanies": ["Example Company"],
"mentioningMembers": [],
"mentioningCompanies": [],
"authorCompanies": [
{ "name": "Example Company", "urn": "urn:li:organization:1234567" }
],
"authorIndustries": ["Software Development"]
},
"customSearchUrl": "https://www.linkedin.com/search/results/content/?keywords=climate%20tech",
"then": { ... }
}label(optional) – custom label for tracking this action in workflow completion.term(optional) – keyword or phrase to search, from 1 to 50 characters. EithertermorcustomSearchUrlmust be provided; a request with neither (for example, withfilteronly) is rejected.limit(optional) – number of search results to return. Defaults to 10, with a maximum value of 100, or 20 when child actions are used. A value above the applicable maximum is rejected when the workflow is submitted. A search may return fewer posts thanlimit, because how many results come back depends on what LinkedIn loads for that account on that search.filter(optional) – object that specifies filtering criteria for posts. Every specified field is applied, or the action fails. When multiple filter fields are specified, they are combined usingANDlogic. Ignored entirely whencustomSearchUrlis specified.sort(optional) – enum with possible values:topMatch.latest.
datePosted(optional) – enum with possible values:past24Hours.pastWeek.pastMonth.
contentType(optional) – enum with possible values:videos.images.jobPosts.liveVideos.documents.
postedBy(optional) – array of enums with possible values:me.firstConnections.peopleYouFollow.
fromMembers(optional) – array of people whose posts to keep. Matches if the post was published by any of the listed people.fromCompanies(optional) – array of companies whose posts to keep. Matches if the post was published by any of the listed companies.mentioningMembers(optional) – array of people to look for in post text. Matches if the post mentions any of the listed people.mentioningCompanies(optional) – array of companies to look for in post text. Matches if the post mentions any of the listed companies.authorCompanies(optional) – array of companies the author works at. Matches if the post's author works at any of the listed companies.authorIndustries(optional) – array of industry names the author works in. Matches if the post's author works in any of the listed industries. Takes specific values available in the LinkedIn interface. An industry is a taxonomy value rather than an entity, so it is matched by name only.
customSearchUrl(optional) – URL copied from a LinkedIn content search page after configuring desired filters. When specified,filteris ignored entirely and the facets already encoded in the URL are the only ones applied. EithertermorcustomSearchUrlmust be provided.then(optional) – object or array of child actions to be executed within this action.
LinkedIn widens a narrow query on its own and returns loosely related posts, so a non-empty result does not mean your term matched. Check the returned posts against your own criteria when an exact match matters.
Identifying people and companies in filters
fromMembers, fromCompanies, mentioningMembers, mentioningCompanies, and authorCompanies all take the same entry shape. A plain string is shorthand for the name alone, so ["Bill Gates"] and [{ "name": "Bill Gates" }] mean the same thing, and both forms can be mixed in one array.
name(required) – name to type into the LinkedIn filter panel, from 1 to 100 characters.urn(optional) – URN of the person (urn:li:member:<id>) infromMembersandmentioningMembers, or of the company (urn:li:organization:<id>) infromCompanies,mentioningCompanies, andauthorCompanies.personHashedUrl(optional) – hashed LinkedIn URL of the person, infromMembersandmentioningMembers.companyHashedUrl(optional) – hashed LinkedIn URL of the company, infromCompanies,mentioningCompanies, andauthorCompanies.
A name on its own does not guarantee the right person or company. LinkedIn's filter panel accepts typed text and nothing else, so with
namealone the entry that gets picked is whichever suggestion LinkedIn ranked first for that name – which may be a namesake rather than the entity you meant. Supplyurn,personHashedUrl, orcompanyHashedUrlalongsidenameto pin the exact one.
An identifier you supply is matched, never approximated – the action fails with
filterIdentityMismatchinstead of quietly filtering by a namesake.
Result options
- Successful search:
{
"actionType": "st.searchPosts",
"label": "climateTechSearch1",
"success": true,
"data": [
{
"url": "https://www.linkedin.com/feed/update/urn:li:activity:1234567890123456789",
"activityUrn": "urn:li:activity:1234567890123456789",
"time": "2023-01-02T12:30:00Z",
"type": "original",
"author": {
"type": "person",
"name": "Example Person",
"profileUrl": "https://www.linkedin.com/in/example-person",
"headline": "Product Marketing Lead"
},
"reposter": null,
"text": "Check out our latest product launch!",
"repostText": null,
"hashtags": ["product", "launch"],
"mentions": ["https://www.linkedin.com/company/example-company"],
"externalLinks": ["https://example.com/launch"],
"images": [
"https://static.linkedin.com/image1.jpg",
"https://static.linkedin.com/image2.jpg"
],
"documentSlides": [],
"hasVideo": false,
"videoThumbnail": null,
"hasPoll": false,
"reactionsCount": 27,
"commentsCount": 8,
"repostsCount": 12,
"then": { ... }
},
{
"url": "https://www.linkedin.com/feed/update/urn:li:activity:2345678901234567890",
"activityUrn": "urn:li:activity:2345678901234567890",
"time": "2023-01-01T09:15:00Z",
"type": "repost",
"author": {
"type": "company",
"name": "Example Company",
"companyUrl": "https://www.linkedin.com/company/example-company"
},
"reposter": {
"type": "person",
"name": "Example Reposter",
"profileUrl": "https://www.linkedin.com/in/example-reposter",
"headline": null
},
"text": "Original post content about the webinar.",
"repostText": "A useful summary for anyone planning a launch.",
"hashtags": [],
"mentions": [],
"externalLinks": [],
"images": [],
"documentSlides": [],
"hasVideo": true,
"videoThumbnail": "https://media.licdn.com/dms/image/video-cover.jpg",
"hasPoll": false,
"reactionsCount": 6,
"commentsCount": 0,
"repostsCount": 1,
"then": { ... }
}
]
}label– included only if specified in the action parameters.data– array of search outputs with results of child actions execution.url– URL of the post.activityUrn– LinkedIn activity or UGC URN of the post, if available.time– timestamp when the post was published.type– type of the post. Enum with possible values:original– for original posts.repost– for reposts.
author– original content creator. Can benullif the actor cannot be parsed.- For person authors:
type,name,profileUrl,headline. - For company authors:
type,name,companyUrl.
- For person authors:
reposter– person or company that reshared the post. Non-null only whentypeisrepost.- For person reposters:
type,name,profileUrl,headline. - For company reposters:
type,name,companyUrl.
- For person reposters:
text– original author's post text, if available.repostText– text added by the reposter on a repost with comment, if available.hashtags– array of hashtags found in the post text, without leading#.mentions– array of person and company profile URLs found in the post text.externalLinks– array of outbound URLs found in the post text.images– array of up to 3 preview image URLs, if available.documentSlides– array of carousel or document slide image URLs, if available.hasVideo– boolean indicating if the post contains a video.videoThumbnail– URL of the video thumbnail, if available.hasPoll– boolean indicating if the post contains a poll.reactionsCount– number of reactions on the post.commentsCount– number of comments on the post.repostsCount– number of reposts on the post.then– results of child actions execution.
Unlike posts returned by st.openPost, the
authorandreposterof a search result carry nournfield. The URN is read from the post's own page, so open the post with st.doForPosts and st.openPost when you need it.
- Failed search:
{
"actionType": "st.searchPosts",
"label": "climateTechSearch1",
"success": false,
"error": {
"type": "searchingNotAllowed",
"message": "LinkedIn has blocked performing the search."
}
}label– included only if specified in the action parameters.error.type– enum with the following possible values:filterIdentityMismatch– a person or company requested in the search filter was not among the options LinkedIn offered for that name. Raised when a filter entry carriesurn,personHashedUrl, orcompanyHashedUrland none of the suggestions LinkedIn offers for the typed name resolves to it, including when anurnand a hashed URL are supplied together but point to different entities. It does not mean the person or company is gone – the usual cause is anamethat does not match the entity the identifier names, so correct the entry rather than retrying.searchingNotAllowed– LinkedIn has blocked performing the search due to exceeding limits or other restrictions.