cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/linkedin/company/profile \ --header 'Authorization: Bearer <token>'
{ "id": "123456", "name": "Tech Corp", "description": "Leading technology company", "website": "https://techcorp.com", "industry": "Technology", "employeeCount": 1000, "location": "San Francisco, CA" }
Retrieve detailed information about a LinkedIn company
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Company ID or company name
Successful response
"123456"
"Tech Corp"
"Leading technology company"
"https://techcorp.com"
"Technology"
1000
"San Francisco, CA"
Was this page helpful?