Appearance
LinkedIn
Access profiles, organizations, posts, and analytics via the LinkedIn API.
| Detail | Value |
|---|---|
| Category | Social Media |
| Base URL | https://api.linkedin.com/v2 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | linkedin |
Using LinkedIn in a workflow
- Go to Connections and click New Connection.
- Pick LinkedIn from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /me | Get authenticated profile |
POST /posts | Create a post |
GET /posts/{postUrn} | Get a post |
GET /organizations/{organizationId} | Get an organization |
GET /organizationalEntityShareStatistics | Get share statistics |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /me
Get authenticated profile
| Detail | Value |
|---|---|
| Operation ID | social.getProfile |
| Method | GET |
| Path | /me |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your LinkedIn connection from the Connection dropdown.
- In the Operation dropdown, select
social.getProfile. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream LinkedIn API reference.
POST /posts
Create a post
| Detail | Value |
|---|---|
| Operation ID | social.createPost |
| Method | POST |
| Path | /posts |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your LinkedIn connection from the Connection dropdown.
- In the Operation dropdown, select
social.createPost. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream LinkedIn API reference.
GET /posts/{postUrn}
Get a post
| Detail | Value |
|---|---|
| Operation ID | social.getPost |
| Method | GET |
| Path | /posts/{postUrn} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
postUrn | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your LinkedIn connection from the Connection dropdown.
- In the Operation dropdown, select
social.getPost. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream LinkedIn API reference.
GET /organizations/{organizationId}
Get an organization
| Detail | Value |
|---|---|
| Operation ID | social.getOrganization |
| Method | GET |
| Path | /organizations/{organizationId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
organizationId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your LinkedIn connection from the Connection dropdown.
- In the Operation dropdown, select
social.getOrganization. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream LinkedIn API reference.
GET /organizationalEntityShareStatistics
Get share statistics
| Detail | Value |
|---|---|
| Operation ID | social.getShareStats |
| Method | GET |
| Path | /organizationalEntityShareStatistics |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your LinkedIn connection from the Connection dropdown.
- In the Operation dropdown, select
social.getShareStats. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream LinkedIn API reference.