Skip to main content

Get Company Details

GET /get-company-details

Retrieve company information using a LinkedIn company ID, LinkedIn URL, or website domain.

Pricing

1 credit per call.

Parameters

Provide one of the following parameters:

ParameterTypeRequiredDescription
company_idstringOne requiredLinkedIn company ID (e.g., 162479)
linkedin_urlstringOne requiredLinkedIn company URL (e.g., https://www.linkedin.com/company/apple/)
domainstringOne requiredCompany domain (e.g., apple.com, www.apple.com, or https://apple.com)
Domain Normalization

The API automatically normalizes domains by removing protocols (http://, https://), www. prefix, and trailing paths.

Example Requests

curl --request GET \
--url 'https://api.infoplug.io/get-company-details?domain=apple.com' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"company_name": "Apple",
"linkedin_url": "https://www.linkedin.com/company/apple/",
"industry": "Consumer Electronics",
"company_size": "10001+",
"headquarters": "Cupertino, California",
"founded": 1976,
"website": "https://www.apple.com",
"description": "We're a diverse collective of thinkers and doers...",
"specialties": ["Hardware", "Software", "Consumer Electronics"]
}
}