Get Task Status


Task status API for Monitoring the status of your tasks.

When performing resource-intensive operations such as retrieving LinkedIn profile details or searching for professional emails, tasks may be processed asynchronously. Use the Get Task Status API to check the current state of your task — whether it’s pending, in progress, completed, or failed.


🌐 Endpoint


POST https://api.linkedinmailfinder.com/task/status

Authentication

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

Request Parameters


{
  "taskid": ""
}

Success Response


{
  "code":200,
  "result":{
    ...
  },
}

For Detail of Task Result, See the Endpoint's Task Result Response section

Search Mail by LinkedIn URL Task Result

Search Email by Fullname and Domain Task Result

Find LinkedIn People Data Task Result

Find LinkedIn Company Data Task Result

Error Response


{
  "code":40001,
  "msg":"error"
}

Example code(Node.js)


const axios = require('axios');

(async () => {
  try {
    const response = await axios.post(
      'https://api.linkedinmailfinder.com/task/status',
      {
        taskid: 't1xxxx-ssxx'
      },
      {
        headers: {
          Authorization: 'YOUR_API_KEY',
          'Content-Type': 'application/json'
        }
      }
    );
    console.log(response.data);
  } catch (error) {
    console.error(error.response?.data || error.message);
  }
})();