search_linkedin_posts
Find LinkedIn posts using keywords, content types, authors, industries, and date filters to gather relevant professional content and insights.
Instructions
Search for LinkedIn posts with various filters like keywords, content type, authors, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_industries | No | Industry URN, can be obtained in /linkedin/search/industries. Or industry name. | |
author_title | No | Author job title. | |
authors | No | Authors URN of posts | |
content_type | No | Desired content type | |
count | Yes | Max result count | |
date_posted | No | Date posted | past-month |
keywords | No | Any keyword for searching in the post. For exact search put desired keywords into brackets | |
mentioned | No | Mentioned users URN in posts | |
sort | No | Sort type | relevance |
timeout | No | Max scrapping execution timeout (in seconds) |
Input Schema (JSON Schema)
{
"properties": {
"author_industries": {
"description": "Industry URN, can be obtained in /linkedin/search/industries. Or industry name.",
"oneOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
]
},
"author_title": {
"description": "Author job title.",
"type": "string"
},
"authors": {
"description": "Authors URN of posts",
"items": {
"type": "string"
},
"type": "array"
},
"content_type": {
"description": "Desired content type",
"enum": [
"videos",
"photos",
"jobs",
"live_videos",
"documents"
],
"type": "string"
},
"count": {
"description": "Max result count",
"type": "number"
},
"date_posted": {
"default": "past-month",
"description": "Date posted",
"enum": [
"past-month",
"past-week",
"past-24h"
],
"type": "string"
},
"keywords": {
"default": "",
"description": "Any keyword for searching in the post. For exact search put desired keywords into brackets",
"type": "string"
},
"mentioned": {
"description": "Mentioned users URN in posts",
"items": {
"type": "string"
},
"type": "array"
},
"sort": {
"default": "relevance",
"description": "Sort type",
"enum": [
"relevance"
],
"type": "string"
},
"timeout": {
"default": 300,
"description": "Max scrapping execution timeout (in seconds)",
"maximum": 1500,
"minimum": 20,
"type": "number"
}
},
"required": [
"count"
],
"type": "object"
}