Retrieve decision makers
The Linked API allows you to retrieve information about decision makers (key employees such as executives or managers) of a company on LinkedIn programmatically. You can specify whether to retrieve only decision makers using the include
query parameter. Below is an example of how to retrieve decision maker data using a GET
request.
Endpoint
GET /v1/companies
Parameters
url
(required, string): The URL of the LinkedIn company page to retrieve decision makers from.include
(optional, string): Set todecisionMakers
to retrieve only the company's decision maker data.limit
(optional, integer): The maximum number of decision makers to retrieve. Default is 10.
Example
curl -X GET "https://api.linkedapi.io/v1/companies?include=decisionMakers&limit=5" \
-H "Content-Type: application/json" \
-H "x-api-token: your-api-token-here" \
-H "account-token: your-account-token-here" \
-d '{
"url": "https://www.linkedin.com/company/abc-corp/"
}'
Response
{
"data": {
"decisionMakers": [
{
"employeeId": "12345",
"name": "John Doe",
"title": "Chief Executive Officer",
"profileUrl": "https://www.linkedin.com/in/johndoe/",
"location": "New York, NY",
"joinedDate": "2019-01-10"
},
{
"employeeId": "67890",
"name": "Jane Smith",
"title": "Chief Financial Officer",
"profileUrl": "https://www.linkedin.com/in/janesmith/",
"location": "San Francisco, CA",
"joinedDate": "2018-07-20"
}
]
},
"success": true
}
Errors
400 Bad Request
: Invalid or missing parameters.401 Unauthorized
: Missing or invalid authorization token.404 Not Found
: Company profile or decision makers not found.