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": {
"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"
}
}
Retrieve the home feed of the authenticated account.
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": {
"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"
}
}
next_cursor returned by a previous call to fetch older posts.
count values trigger multiple upstream calls automatically."get_feed".Show data properties
Show post properties
"regular", "sponsored", "reshared", etc.name, description, image_url, profile_url.{ "type": "image", "images": [...] }, { "type": "video", ... }).reactions, comments, shares.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?