Get Company Details
Get detailed information about a specific company including description, headquarters, employee count, and specialities
POST
/linkedin/companies/detailsGet Company Details
Get detailed information about a specific company including description, headquarters, employee count, and specialities
Authentication requiredLinkedIn Search
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/companies/details' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"companyId":"12345"}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | |
companyId | string | Yes | Company ID or URN |
Example
{
"companyId": "12345"
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"company": {
"id": "2375495",
"name": "Canva",
"universalName": "canva",
"description": "Canva is a free-to-use online graphic design tool...",
"website": "https://www.canva.com",
"industry": "Software Development",
"employeeRange": "1001-5000 employees",
"staffCount": 4892,
"headquartersCity": "Sydney",
"headquartersCountry": "AU",
"logo": "https://media.licdn.com/dms/image/...",
"url": "https://www.linkedin.com/company/canva"
}
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Numeric company ID (use for currentCompanyIds in people search) |
name | string | Company name |
universalName | string | URL-friendly company identifier |
description | string | Company description/about |
website | string | Company website URL |
industry | string | Industry name |
employeeRange | string | Company size range (e.g., "1001-5000 employees") |
staffCount | number | Number of employees with LinkedIn profiles at this company |
headquartersCity | string | City where company HQ is located |
headquartersCountry | string | Country code where company HQ is located |
logo | string | Company logo URL |
url | string | LinkedIn company page URL |
Note: staffCount represents the number of employees who have LinkedIn profiles at this company, while employeeRange is the company's stated size range.
