Fetch company profile
Learn how to fetch company profiles on LinkedIn using Unipile API.
To get the profile of a company, use the Get a Company Profile endpoint, specifying the ID of the company.
About the company IDThe company ID can be either the system ID (numeric) or the public identifier (e.g.
unipileinhttps://www.linkedin.com/company/unipile/).
const { data } = await linkedInApi.getClassicCompanyProfile({
path: {
account_id: "acc_123456789",
company_id: "company_id",
},
});company = linked_in_api.get_classic_company_profile(
"company_id",
"acc_123456789",
)curl --request GET \
--url https://api.unipile.com/v2/account_id/linkedin/company/company_id \
--header 'accept: application/json'Updated 3 months ago