Search Mail by LinkedIn URL
This API endpoint enables developers to retrieve professional email addresses associated with LinkedIn profiles using their public profile URLs. Designed for B2B lead generation, sales automation, and CRM enrichment, the service employs advanced web scraping, data validation, and email verification techniques to deliver accurate and up-to-date contact information.
🌐 Endpoint
POST https://api.linkedinmailfinder.com/searchlinkedinmail
Authentication
- Header
Authorization: Bearer <your_api_key> Content-Type: application/json
Request Parameters
{
"urls": [] // array of url strings
}
Request Example
{
"profile_urls": [
"https://www.linkedin.com/in/xxs-zzb",
"https://www.linkedin.com/in/xxs-12zzb",
"https://www.linkedin.com/in/xxs-22zzb"
]
}
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": "Search LinkedIn Email Task",
"tasktype": "search_linkedin_email",
"status": "completed",
"error_code": 0,
"input_count": 10,
"credit_consumed": 5,
"finished_at": 1717027200,
"successed": 8,
"failed": 2,
"start_at": 1717027000,
"created_at": "2024-06-01T12:00:00Z",
"updated_at": "2024-06-01T12:30:00Z",
"data": [
{
"status": "success",
"error_code": 0,
"email": "john.doe@example.com",
"input_url": "https://linkedin.com/in/johndoe ",
"name": "John Doe",
"city": "San Francisco",
"position": "Software Engineer",
"about": "Passionate about building scalable systems.",
"current_company": {
"company_id": "12345",
"name": "Tech Corp",
"linkedin_url": "https://linkedin.com/company/techcorp "
},
"experience": [
{
"title": "Senior Software Engineer",
"company": "Tech Corp",
"duration": "2020 - Present",
"location": "San Francisco, CA"
},
{
"title": "Software Engineer",
"company": "Startup Inc",
"duration": "2017 - 2020",
"location": "New York, NY"
}
],
"educations_details": "Bachelor of Science in Computer Science from Stanford University",
"avatar": "https://example.com/avatar.jpg ",
"languages": [
{
"name": "English",
"level": "Fluent"
},
{
"name": "Spanish",
"level": "Intermediate"
}
],
"followers": 500,
"connections": 300,
"current_company_company_id": "12345",
"current_company_name": "Tech Corp",
"location": "San Francisco, CA"
},
{
"status": "success",
"error_code": 0,
"email": "jane.smith@example.com",
"input_url": "https://linkedin.com/in/janesmith ",
"name": "Jane Smith",
"city": "New York",
"position": "Product Manager",
"about": "Building great products for users.",
"current_company": {
"company_id": "67890",
"name": "Productivity Inc",
"linkedin_url": "https://linkedin.com/company/productivityinc "
},
"experience": [
{
"title": "Product Manager",
"company": "Productivity Inc",
"duration": "2019 - Present",
"location": "New York, NY"
}
],
"languages": [
{
"name": "English",
"level": "Fluent"
}
],
"followers": 700,
"connections": 400,
"current_company_company_id": "67890",
"current_company_name": "Productivity Inc",
"location": "New York, NY"
}
]
}
}
Example code(Node.js)
const axios = require('axios');
(async () => {
try {
const response = await axios.post(
'https://api.linkedinmailfinder.com/searchlinkedinmail',
{
profile_urls: [
"https://www.linkedin.com/in/xxs-zzb",
"https://www.linkedin.com/in/xxs-12zzb",
"https://www.linkedin.com/in/xxs-22zzb"
],
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);
}
})();