Find LinkedIn Company Detail
API for developer to get comprehensive company insights from a LinkedIn Company profile URL
Get detailed and structured company information using a LinkedIn company profile URL. Whether you're doing market research, prospecting for sales, or enriching your CRM, our API gives you instant access to verified, up-to-date company data from public LinkedIn sources.
🌐 Endpoint
POST https://api.linkedinmailfinder.com/linkedincompany
Authentication
- Header
Authorization: Bearer <your_api_key> Content-Type: application/json
Request Parameters
{
"company_urls": [] // array of url strings
}
Request Example
{
"company_urls": [
"https://www.linkedin.com/company/xxs-xlxx",
"https://www.linkedin.com/company/xxd-xxx9",
"https://www.linkedin.com/company/xxb-xzxb"
]
}
Success Response
{
"code":200,
"taskid":"xxyusd",
}
Error Response
{
"code":40001,
"msg":"error"
}
Task Result Response
{
"code":200,
"result":{
"taskid": "task_123456",
"userid": "user_7890",
"name": "LinkedIn Company Info Task",
"tasktype": "linkedin_company_info",
"status": "completed",
"error_code": 0,
"input_count": 5,
"credit_consumed": 5,
"finished_at": 1717027200,
"successed": 5,
"failed": 0,
"start_at": 1717027000,
"created_at": "2024-06-01T12:00:00Z",
"updated_at": "2024-06-01T12:30:00Z",
"data": [
{
"timestamp": "2024-06-01T12:20:00Z",
"status": "success",
"error_code": 0,
"input_url": "https://linkedin.com/company/example ",
"id": "123456",
"name": "Example Inc.",
"country_code": "US",
"location": ["Mountain View, CA", "New York, NY"],
"followers": 10000,
"employees_in_linked": 2500,
"about": "A technology company that builds innovative products.",
"specialties": "Software Development, Cloud Services",
"company_size": "1001-5000 employees",
"organization_type": "Public Company",
"industries": "Information Technology",
"website": "https://www.example.com ",
"crunchbase_url": "https://crunchbase.com/organization/example-inc ",
"founded": 2005,
"company_id": "example_inc",
"employees": [
{
"img": "https://example.com/avatar1.jpg ",
"link": "https://linkedin.com/in/johndoe ",
"subtitle": "Software Engineer",
"title": "John Doe"
},
{
"img": "https://example.com/avatar2.jpg ",
"link": "https://linkedin.com/in/janesmith ",
"subtitle": "Product Manager",
"title": "Jane Smith"
}
],
"headquarters": "Mountain View, CA",
"image": "https://example.com/banner.jpg ",
"logo": "https://example.com/logo.png ",
"similar": [
{
"links": "https://linkedin.com/company/techcorp ",
"subtitle": "Tech Company",
"title": "Tech Corp",
"location": "New York, NY"
}
],
"affiliated": [
{
"title": "Subsidiary A",
"subtitle": "Subsidiary",
"location": "San Francisco, CA",
"links": "https://linkedin.com/company/subsidiarya "
}
],
"funding": {
"last_round_date": "2023-09-01T00:00:00Z",
"last_round_type": "Series C",
"rounds": 3,
"last_round_raise": "$50M",
"investors": ["VC Firm A", "Investor B"]
},
"investors": ["VC Firm A", "Investor B"],
"formatted_locations": ["Mountain View, California", "New York City, New York"],
"stock_info": {
"id": "12345",
"datetime": "2024-06-01T12:00:00Z",
"stock_exchange": "NASDAQ",
"stock_ticker": "EXMP",
"stock_price": "$120.50",
"stock_price_change": "+2.5%",
"stock_provider": "Yahoo Finance",
"get_directions_url": [
{
"directions_url": "https://maps.google.com/dir/... "
}
]
},
"description": "<p>Raw HTML description of Example Inc.</p>",
"additional_information": "Additional notes about the company.",
"country_codes_array": ["US", "GB"],
"alumni": 1500,
"alumni_information": [
{
"header": "Alumni Count",
"title": "Alumni in Tech",
"value": "1200"
}
],
"website_simplified": "example.com",
"unformatted_about": "A tech company building innovative software."
}
]
}
}
Example code(Node.js)
const axios = require('axios');
(async () => {
try {
const response = await axios.post(
'https://api.linkedinmailfinder.com/linkedincompany',
{
company_urls: [
"https://www.linkedin.com/company/xxs-xlxx",
"https://www.linkedin.com/company/xxd-xxx9",
"https://www.linkedin.com/company/xxb-xzxb"
],
webhook:'https://t.me/webhook'
},
{
headers: {
Authorization: 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
console.log(response.data);
} catch (error) {
console.error(error.response?.data || error.message);
}
})();