Get Feed
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": {
"count": 123,
"cursor": "<string>"
}
}
'{
"success": true,
"data": {
"Feed": [
{
"type": "regular",
"actor": {
"name": "Jane Doe",
"description": "Founder @ Acme Corp",
"image_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"profile_url": "https://www.linkedin.com/in/jane-doe-42"
},
"content": {
"type": "image",
"images": ["https://media.licdn.com/dms/image/v2/.../share.jpg"]
},
"commentary": "Thrilled to share our latest milestone...",
"social_stats": { "reactions": 224, "comments": 10, "shares": 14 },
"reshared": false,
"url": "https://www.linkedin.com/posts/jane-doe-42_announcement-activity-7453382311909445632-TZ0m"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "10|1013432138-1777199560305-f3e028f30691a0c579cd6dbdfaacf5dd"
}
},
"metadata": {
"action": "get_feed",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Content
Get Feed
Retrieve the home feed of the authenticated account.
POST
/
v2
/
content
Get Feed
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": {
"count": 123,
"cursor": "<string>"
}
}
'{
"success": true,
"data": {
"Feed": [
{
"type": "regular",
"actor": {
"name": "Jane Doe",
"description": "Founder @ Acme Corp",
"image_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"profile_url": "https://www.linkedin.com/in/jane-doe-42"
},
"content": {
"type": "image",
"images": ["https://media.licdn.com/dms/image/v2/.../share.jpg"]
},
"commentary": "Thrilled to share our latest milestone...",
"social_stats": { "reactions": 224, "comments": 10, "shares": 14 },
"reshared": false,
"url": "https://www.linkedin.com/posts/jane-doe-42_announcement-activity-7453382311909445632-TZ0m"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "10|1013432138-1777199560305-f3e028f30691a0c579cd6dbdfaacf5dd"
}
},
"metadata": {
"action": "get_feed",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Overview
Returns the home feed posts for the authenticated account. Pagination is cursor-based because the feed is a dynamic, time-ordered stream — pass thenext_cursor returned by a previous call to fetch older posts.
This endpoint consumes 1 credit per 10 results returned. LinkedIn returns up to 10 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
"get_feed".Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of feed posts.
Show post properties
Show post properties
Post type:
"regular", "sponsored", "reshared", etc.Author of the post:
name, description, image_url, profile_url.Content payload (e.g.
{ "type": "image", "images": [...] }, { "type": "video", ... }).Plain-text body of the post.
Engagement counts:
reactions, comments, shares.Whether this is a reshared post.
Public URL of the post.
Number of posts returned in this response.
Show pagination properties
Show pagination properties
{
"success": true,
"data": {
"Feed": [
{
"type": "regular",
"actor": {
"name": "Jane Doe",
"description": "Founder @ Acme Corp",
"image_url": "https://media.licdn.com/dms/image/v2/.../profile.jpg",
"profile_url": "https://www.linkedin.com/in/jane-doe-42"
},
"content": {
"type": "image",
"images": ["https://media.licdn.com/dms/image/v2/.../share.jpg"]
},
"commentary": "Thrilled to share our latest milestone...",
"social_stats": { "reactions": 224, "comments": 10, "shares": 14 },
"reshared": false,
"url": "https://www.linkedin.com/posts/jane-doe-42_announcement-activity-7453382311909445632-TZ0m"
}
],
"total_results": 1,
"pagination": {
"results_per_page": 10,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "10|1013432138-1777199560305-f3e028f30691a0c579cd6dbdfaacf5dd"
}
},
"metadata": {
"action": "get_feed",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?
⌘I