tasklist

Get Task List


Get task list API


🌐 Endpoint


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

Authentication

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

Request Parameters


{
  "tasktype": "",
  "status": "",
  "page": 1,
  "pagesize": 20,
  
}

tasktype Values

value task type
1 Search Linkedin Email by linkedin profile url
2 Search Email By FullName And Domain
3 Verify Email
4 Get Linkedin Profile
5 Get Linkedin Company

status Values

value task status
1 waiting
2 running
3 success
4 failed
5 partial success

Success Response


{
  "code":200,
  "total":12,
  "result":[
      {
      "taskid":"",
      "name":"",
      "tasktype":"",
      "status":"",
      "input_count": 1,
      "credit_consumed": 1,
      "successed":1,
      "failed": 0,
      "error_code": 0,
      "start_at": 234567,
      "finished_at":23232,
      "created_at":234567,
      "updated_at":123434
      },
      ...
  ],
}

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/list',
      {
        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);
  }
})();