Skip to main content
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>'
{
  "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"
}
Poll until status is COMPLETED or FAILED. The result field is populated on completion.
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

{
  "request_id": "run_abc123xyz",
  "status": "RUNNING",
  "result": null,
  "started_at": "2026-05-15T10:00:00Z",
  "finished_at": null
}
{
  "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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

request_id
string
required

Response

Successful Response

request_id
string
required
status
string
required
result
LinkedInJobsResult · object
started_at
string | null
finished_at
string | null