curl --request POST \
--url https://api.example.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"
}
}
Search for posts using keywords and advanced filters.
curl --request POST \
--url https://api.example.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"
}
}
count for the page size and offset to skip ahead.
count values trigger multiple upstream calls automatically."search".Show params properties
["AI", "agents"]).10. Capped at 1000 per call.0. Use pagination.next_offset from a previous response to fetch the next page."VIDEOS", "IMAGES", "ARTICLES")."date_posted" (default) or "relevance"."past-24h", "past-week", "past-month").linkedin_url."first", "following", or "first,following".Show data properties
Show post properties
urn:li:activity:7454082992819519488)."PUBLIC").Show pagination properties
total_results).offset in the next request. null when exhausted.true if more posts are available.{
"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?