Facebook Pixel

Get Company Details

Get detailed information about a specific company including description, headquarters, employee count, and specialities

POST/linkedin/companies/details

Get 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

FieldTypeRequiredDescription
accountIdstringNo
companyIdstringYesCompany ID or URN

Example

{
  "companyId": "12345"
}

Responses

StatusDescription
200Successful response

200 Example

{
  "success": true,
  "id": "1441",
  "name": "Google",
  "universalName": "google",
  "tagline": "Organizing the world's information",
  "description": "A technology company specializing in search, cloud computing...",
  "websiteUrl": "https://about.google",
  "phone": null,
  "industry": "Technology, Information and Internet",
  "companyType": "PUBLIC_COMPANY",
  "foundedYear": 1998,
  "headquarters": {
    "city": "Mountain View",
    "country": "US",
    "postalCode": "94043",
    "line1": "1600 Amphitheatre Parkway",
    "geographicArea": "California"
  },
  "employeeRange": {
    "start": 10001,
    "end": null
  },
  "employeeCount": 182502,
  "followerCount": 35580000,
  "specialities": [
    "search",
    "ads",
    "mobile",
    "android",
    "cloud computing"
  ],
  "linkedinUrl": "https://www.linkedin.com/company/google/",
  "isActive": true,
  "isVerified": true
}