Search Mail by Fullname and Domain


API for Developers to find professional email addresses using a name and company domain.

Easily discover verified professional email addresses with just a full name and company domain . Whether you're building a sales outreach list, sourcing talent, or connecting with decision-makers, this API delivers accurate and actionable contact data in seconds.

🌐 Endpoint


POST https://api.linkedinmailfinder.com/searchmailbyfullname

Authentication


  • Header
    Authorization: Bearer <your_api_key>
    Content-Type: application/json
    

Request Parameters


{
  "search_list": [
    {
      "fullname":"fullname",
      "domain":"domain"
    },
    ...
  ] // array
}

Request Example


{
  "search_list": [
    {
      "fullname":"xxbl axxxn",
      "domain":"example.com"
    },
    {
      "fullname":"xxxs txxxn",
      "domain":"example.com"
    },
  ] // array
}

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 Email Task",
    "tasktype": "search_email_by_fullname",
    "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,
        "fullname": "John Doe",
        "domain": "example.com",
        "mail_addr": "john.doe@example.com"
      },
      {
        "status": "success",
        "error_code": 0,
        "fullname": "Jane Smith",
        "domain": "example.com",
        "mail_addr": "jane.smith@example.com"
      }
    ]
  }
}


Example code(Node.js)


const axios = require('axios');

(async () => {
  try {
    const response = await axios.post(
      'https://api.linkedinmailfinder.com/searchmailbyfullname',
      {
        search_list: [
          {
            "fullname":"xxbl axxxn",
            "domain":"example.com"
          },
          {
            "fullname":"xxxs txxxn",
            "domain":"example.com"
          },
        ],
        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);
  }
})();