Search Posts
curl --request POST \
--url https://api.linkupapi.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"keyword": "<string>",
"count": 123,
"offset": 123,
"post_type": "<string>",
"sort_by": "<string>",
"post_date": "<string>",
"profile_url": "<string>",
"company_url": "<string>",
"author_company": "<string>",
"author_industry": "<string>",
"author_job_title": "<string>",
"mentions_member": "<string>",
"mentions_organization": "<string>",
"posted_by": "<string>"
}
}
'{
"success": true,
"data": {
"posts": [
{
"backend_urn": "urn:li:activity:7454082992819519488",
"shareUrl": "https://www.linkedin.com/posts/jane-doe-42_post-activity-7454082992819519488-lXYU",
"text": "Exciting developments in artificial intelligence this week...",
"numLikes": 234,
"numComments": 45,
"numShares": 12,
"actor_name": "Jane Doe",
"actor_description": "AI Researcher at Acme Corp",
"actor_image": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"actor_profile_url": "https://www.linkedin.com/in/jane-doe-42",
"created_time": 1777191911,
"post_images": [],
"shareAudience": "PUBLIC"
}
],
"total_results": 1,
"total_available_results": 1240,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 50,
"pages_fetched": 1
}
},
"metadata": {
"action": "search",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Content
Search Posts
Search for posts using keywords and advanced filters.
POST
/
v2
/
content
Search Posts
curl --request POST \
--url https://api.linkupapi.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"keyword": "<string>",
"count": 123,
"offset": 123,
"post_type": "<string>",
"sort_by": "<string>",
"post_date": "<string>",
"profile_url": "<string>",
"company_url": "<string>",
"author_company": "<string>",
"author_industry": "<string>",
"author_job_title": "<string>",
"mentions_member": "<string>",
"mentions_organization": "<string>",
"posted_by": "<string>"
}
}
'{
"success": true,
"data": {
"posts": [
{
"backend_urn": "urn:li:activity:7454082992819519488",
"shareUrl": "https://www.linkedin.com/posts/jane-doe-42_post-activity-7454082992819519488-lXYU",
"text": "Exciting developments in artificial intelligence this week...",
"numLikes": 234,
"numComments": 45,
"numShares": 12,
"actor_name": "Jane Doe",
"actor_description": "AI Researcher at Acme Corp",
"actor_image": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"actor_profile_url": "https://www.linkedin.com/in/jane-doe-42",
"created_time": 1777191911,
"post_images": [],
"shareAudience": "PUBLIC"
}
],
"total_results": 1,
"total_available_results": 1240,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 50,
"pages_fetched": 1
}
},
"metadata": {
"action": "search",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Overview
Search for posts using keywords with optional filters by author, company, industry, date, mentions, and more. Pagination is offset-based — setcount for the page size and offset to skip ahead.
This endpoint consumes 1 credit per 10 results returned. LinkedIn returns up to 50 posts per internal request, so larger
count values trigger multiple upstream calls automatically.Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"search".Show params properties
Show params properties
The search keyword or phrase. Multi-value supported via array (e.g.
["AI", "agents"]).Number of posts to return. Defaults to
10. Capped at 1000 per call.Zero-indexed offset into the search results. Defaults to
0. Use pagination.next_offset from a previous response to fetch the next page.Filter by content type (e.g.
"VIDEOS", "IMAGES", "ARTICLES").Sort order:
"date_posted" (default) or "relevance".Filter by date range (e.g.
"past-24h", "past-week", "past-month").Filter posts authored by a specific profile. Also accepts
linkedin_url.Filter posts authored by a specific company page.
Filter by the author’s current company.
Filter by the author’s industry.
Filter by the author’s job title.
Filter posts that mention a specific member.
Filter posts that mention a specific organization.
Filter by author network:
"first", "following", or "first,following".Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of matching posts.
Show post properties
Show post properties
LinkedIn activity URN (e.g.
urn:li:activity:7454082992819519488).Public share URL of the post.
Plain-text content of the post.
Reaction count.
Comment count.
Share count.
Author display name.
Author headline.
Author profile picture URL.
Author LinkedIn profile URL.
Post creation Unix epoch (seconds).
List of attached image URLs.
Audience scope (e.g.
"PUBLIC").Number of posts returned in this response.
Total number of posts matching the query reported by LinkedIn.
Show pagination properties
Show pagination properties
Offset of the first post in this response.
Number of posts returned (mirrors
total_results).Offset to send as
offset in the next request. null when exhausted.true if more posts are available.Maximum batch size used per upstream request.
Number of internal upstream batches consumed.
{
"success": true,
"data": {
"posts": [
{
"backend_urn": "urn:li:activity:7454082992819519488",
"shareUrl": "https://www.linkedin.com/posts/jane-doe-42_post-activity-7454082992819519488-lXYU",
"text": "Exciting developments in artificial intelligence this week...",
"numLikes": 234,
"numComments": 45,
"numShares": 12,
"actor_name": "Jane Doe",
"actor_description": "AI Researcher at Acme Corp",
"actor_image": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"actor_profile_url": "https://www.linkedin.com/in/jane-doe-42",
"created_time": 1777191911,
"post_images": [],
"shareAudience": "PUBLIC"
}
],
"total_results": 1,
"total_available_results": 1240,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 50,
"pages_fetched": 1
}
},
"metadata": {
"action": "search",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?
⌘I