Get Scrape Linkedin Jobs Status
curl --request GET \
--url https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"request_id": "run_linkedin_abc123",
"status": "COMPLETED",
"result": {
"titles_query": [
"Account Executive",
"Sales Manager"
],
"locations": [
"United States"
],
"country": "United States",
"search_url": "https://www.linkedin.com/jobs/search/?keywords=Account+Executive+OR+Sales+Manager&location=United+States&f_TPR=r86400&f_JT=F&f_WT=2%2C3&f_E=3%2C4",
"search_urls": [
"https://www.linkedin.com/jobs/search/?keywords=Account+Executive+OR+Sales+Manager&location=United+States&f_TPR=r86400&f_JT=F&f_WT=2%2C3&f_E=3%2C4"
],
"total_found": 3,
"jobs_scraped": 1,
"successful_scrapes": 1,
"failed_scrapes": 0,
"jobs": [
{
"title": "Account Executive",
"job_url": "https://www.linkedin.com/jobs/view/1234567890",
"linkedin_job_id": "1234567890",
"company_name": "Example Co",
"company_url": "https://www.linkedin.com/company/example-co",
"company_id": "example-co",
"location": "New York, NY",
"description": "Own new business pipeline and close customer accounts.",
"seniority_level": "Associate",
"employment_type": "Full-time",
"industries": "Software Development",
"apply_url": "https://example.com/jobs/account-executive",
"apply_type": "external"
}
]
},
"started_at": "2026-05-22T12:30:00.000Z",
"finished_at": "2026-05-22T12:31:00.000Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrapers
Get LinkedIn job scrape status
Poll the status and results of a LinkedIn job search
GET
/
v1
/
scrape-linkedin-jobs
/
async
/
{request_id}
Get Scrape Linkedin Jobs Status
curl --request GET \
--url https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.automindz.co/v1/scrape-linkedin-jobs/async/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"request_id": "run_linkedin_abc123",
"status": "COMPLETED",
"result": {
"titles_query": [
"Account Executive",
"Sales Manager"
],
"locations": [
"United States"
],
"country": "United States",
"search_url": "https://www.linkedin.com/jobs/search/?keywords=Account+Executive+OR+Sales+Manager&location=United+States&f_TPR=r86400&f_JT=F&f_WT=2%2C3&f_E=3%2C4",
"search_urls": [
"https://www.linkedin.com/jobs/search/?keywords=Account+Executive+OR+Sales+Manager&location=United+States&f_TPR=r86400&f_JT=F&f_WT=2%2C3&f_E=3%2C4"
],
"total_found": 3,
"jobs_scraped": 1,
"successful_scrapes": 1,
"failed_scrapes": 0,
"jobs": [
{
"title": "Account Executive",
"job_url": "https://www.linkedin.com/jobs/view/1234567890",
"linkedin_job_id": "1234567890",
"company_name": "Example Co",
"company_url": "https://www.linkedin.com/company/example-co",
"company_id": "example-co",
"location": "New York, NY",
"description": "Own new business pipeline and close customer accounts.",
"seniority_level": "Associate",
"employment_type": "Full-time",
"industries": "Software Development",
"apply_url": "https://example.com/jobs/account-executive",
"apply_type": "external"
}
]
},
"started_at": "2026-05-22T12:30:00.000Z",
"finished_at": "2026-05-22T12:31:00.000Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Poll until
status is COMPLETED or FAILED. The result field is populated on completion.
Page through the returned jobs with the limit (1–50, default 25) and offset query params; the response echoes limit, offset, and has_more.
Polling guidance: Check every 15–30 seconds. Most searches complete within 1–4 minutes; enabling per-job detail fetches on large
rows takes longer.Example responses
Queued / running
Queued / running
{
"request_id": "run_abc123xyz",
"status": "RUNNING",
"result": null,
"started_at": "2026-05-15T10:00:00Z",
"finished_at": null
}
Completed
Completed
{
"request_id": "run_abc123xyz",
"status": "COMPLETED",
"result": {
"titles_query": "Account Executive",
"locations": ["United States"],
"country": "United States",
"search_urls": [
"https://www.linkedin.com/jobs-guest/jobs/api/seeMoreJobPostings/search?keywords=Account%20Executive&location=United%20States"
],
"total_found": 50,
"jobs_scraped": 48,
"successful_scrapes": 46,
"failed_scrapes": 2,
"jobs": [
{
"title": "Account Executive",
"company_name": "Acme Corp",
"company_url": "https://www.linkedin.com/company/acme",
"location": "New York, NY",
"job_url": "https://www.linkedin.com/jobs/view/3901234567",
"linkedin_job_id": "3901234567",
"description": "We are hiring an Account Executive to...",
"posted_at": "2026-05-10",
"posted_time_ago": "5 days ago",
"applications_count": "47 applicants",
"apply_url": "https://acme.com/careers/ae",
"apply_type": "external",
"salary": "$90,000 - $120,000",
"seniority_level": "Mid-Senior level",
"employment_type": "Full-time",
"job_function": "Sales",
"industries": "Software Development",
"company_size": "201-500 employees",
"company_website": "https://acme.com",
"headquarters": "New York, NY"
}
]
},
"started_at": "2026-05-15T10:00:00Z",
"finished_at": "2026-05-15T10:02:31Z"
}
Completed — no jobs found
Completed — no jobs found
{
"request_id": "run_def456uvw",
"status": "COMPLETED",
"result": {
"titles_query": "Account Executive",
"locations": ["Antarctica"],
"country": "Antarctica",
"search_urls": [
"https://www.linkedin.com/jobs-guest/jobs/api/seeMoreJobPostings/search?keywords=Account%20Executive&location=Antarctica"
],
"total_found": 0,
"jobs_scraped": 0,
"successful_scrapes": 0,
"failed_scrapes": 0,
"jobs": []
},
"started_at": "2026-05-15T10:00:00Z",
"finished_at": "2026-05-15T10:00:48Z"
}
Failed
Failed
{
"request_id": "run_jkl012mno",
"status": "FAILED",
"result": null,
"started_at": "2026-05-15T10:00:00Z",
"finished_at": "2026-05-15T10:00:09Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The run_... id returned by the scrape endpoint.
Query Parameters
Max jobs to return (pagination page size).
Required range:
1 <= x <= 50Number of jobs to skip (pagination offset).
Required range:
x >= 0⌘I