# List posts by a person or company

### List posts by a person or company

`GET /api/v1/linkedin/posts`

Operation ID: `listLinkedinPosts`

Posts authored by a person. A company identifier also works, but GET /api/v1/linkedin/companies/{identifier}/posts resolves it in one call instead of two.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `identity` (string, required): Author to read, as a user id or public identifier. For a company page, prefer GET /api/v1/linkedin/companies/{identifier}/posts.
- `cursor` (string, optional)
- `limit` (integer, optional)

**200**: Posts and an optional cursor.

- `posts` (object[], required)
- `cursor` (string | null, required)

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
