Post to your LinkedIn personal feed (incl. image/video/document uploads), comment, and react. BYOK OAuth 2.0 access tokens (60-day expiry). The 3 self-serve actions (get_profile, create_post, delete_post) are live-verified; reads (get_post, list_my_posts, list_comments), comments, and reactions require LinkedIn Partner Program approval and return 403 on standard tokens. DMs and mentions are partner-only too.
| Action | Description | Parameters | Returns |
|---|---|---|---|
create_comment ⚠ | Post a comment on a LinkedIn post (PARTNER APPROVAL REQUIRED) | post_urn, actor, text | LinkedInComment |
create_media_post ⚠ | Publish a post with an uploaded image/document/video attached | author, commentary, media_urn [title, alt_text, visibility, lifecycle_state] | LinkedInPost |
create_post ⚠ | Publish a post to the authenticated user's LinkedIn feed | author, commentary [visibility, lifecycle_state, content] | LinkedInPost |
delete_post ⚠ | Delete a LinkedIn post you authored | urn | NoneType |
get_post | Get a single LinkedIn post by URN (PARTNER APPROVAL REQUIRED) | urn | LinkedInPost |
get_profile | Get the authenticated LinkedIn user's profile (OIDC userinfo) | — | LinkedInProfile |
list_comments | List comments on a LinkedIn post (PARTNER APPROVAL REQUIRED) | post_urn [count, start] | PaginatedList[LinkedInComment] |
list_my_posts | List the authenticated user's recent posts (PARTNER APPROVAL REQUIRED) | author [count, start] | PaginatedList[LinkedInPost] |
react_to_post ⚠ | React to a LinkedIn post (PARTNER APPROVAL REQUIRED) — LIKE / PRAISE / EMPATHY / INTEREST / APPRECIATION / ENTERTAINMENT | post_urn, actor [reaction_type] | NoneType |
upload_document | Upload a document (PDF/PPT/DOC) and return its urn:li:document URN | owner, file_path | str |
upload_image | Upload an image and return its urn:li:image asset URN for posting | owner, file_path | str |
upload_video | Upload a video (multi-part) and return its urn:li:video asset URN | owner, file_path | str |
Full schema explorer, code generation, and live API testing