Skip to main content
POST
/
v2
/
content
Get Feed
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"
  }
}

Overview

Returns the home feed posts for the authenticated account. Pagination is cursor-based because the feed is a dynamic, time-ordered stream — pass the next_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

x-api-key
string
required
Your API key for authentication.
account_id
string
required
The unique identifier of the account to use.
action
string
required
Must be "get_feed".
params
object

Response

success
boolean
Indicates whether the request was successful.
data
object
metadata
object
{
  "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"
  }
}