Indeed Job Scraper avatar

Indeed Job Scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Indeed Job Scraper

Indeed Job Scraper

Scrape job listings from Indeed using GraphQL API. Returns structured job data including title, company, location, salary, job type, description, and apply links.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Admo Solutions

Admo Solutions

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Categories

Share

Scrape job listings from Indeed using their GraphQL API. Extract job titles, company info, salary data, and more.

πŸ’° Pricing

This Actor uses the Pay Per Event pricing model:

EventPrice
Actor run$0.01
Per job scraped$0.005

For example, scraping 500 jobs in a single run costs: $0.01 + (500 Γ— $0.005) = $2.51

πŸ“₯ Input

FieldTypeRequiredDefaultDescription
searchQueriesarrayβœ…["software engineer"]Job titles or keywords to search for on Indeed
locationsarray❌[]Job locations to search in. Leave empty for worldwide
maxJobsinteger❌100Maximum number of jobs to fetch per search query and location combination
countrystring❌"us"Indeed country domain to search (e.g., us, uk, ca, de)
sortBystring❌"relevance"How to sort search results. Options: relevance, date
maxAgeDaysinteger❌7Only return jobs posted within this many days
proxyConfigurationobject❌{"useApifyProxy": true}Proxy settings for the actor

Example Input

{
"searchQueries": ["software engineer", "data scientist"],
"locations": ["New York", "San Francisco"],
"maxJobs": 50,
"country": "us",
"sortBy": "relevance",
"maxAgeDays": 14
}

πŸ“€ Output

Each job record contains:

FieldTypeDescription
job_idstringUnique job identifier
titlestringJob title
companystringCompany name
locationstringFormatted location string
citystringCity name
statestringState/region code
countrystringCountry name
postal_codestringPostal/ZIP code
salary_textstringFormatted salary range (e.g., "USD 80000 - 120000 /year")
salary_minnumberMinimum salary
salary_maxnumberMaximum salary
salary_currencystringCurrency code (e.g., USD, EUR)
salary_periodstringSalary period (hour, day, week, month, year)
job_typestringEmployment type: fulltime, parttime, contract, internship
is_remotebooleanWhether the job offers remote work
description_htmlstringFull job description in HTML format
description_snippetstringFirst 500 characters of description
job_urlstringDirect link to the job listing on Indeed
apply_urlstringDirect apply link
date_postedstringDate when job was posted (YYYY-MM-DD)
sourcestringJob source/employer name
company_logostringURL to company logo image
company_urlstringLink to company page on Indeed
corporate_websitestringCompany's official website URL
company_industrystringIndustry sector
company_employeesstringEmployee count range
company_revenuestringRevenue range
company_descriptionstringBrief company description
search_querystringThe search query used to find this job
scraped_atstringTimestamp when the job was scraped (ISO format)

Example Output

{
"job_id": "abc123def456",
"title": "Senior Software Engineer",
"company": "Tech Corp",
"location": "New York, NY",
"city": "New York",
"state": "NY",
"country": "United States",
"postal_code": "10001",
"salary_text": "USD 120000 - 180000 /year",
"salary_min": 120000,
"salary_max": 180000,
"salary_currency": "USD",
"salary_period": "year",
"job_type": "fulltime",
"is_remote": true,
"description_html": "<p>We are looking for a senior software engineer...</p>",
"description_snippet": "We are looking for a senior software engineer to join our team...",
"job_url": "https://www.indeed.com/viewjob?jk=abc123def456",
"apply_url": "https://www.indeed.com/apply?jk=abc123def456",
"date_posted": "2025-01-15",
"source": "Tech Corp",
"company_logo": "https://d2q79iu78704ce.cloudfront.net/...",
"company_url": "https://www.indeed.com/cmp/Tech-Corp",
"corporate_website": "https://techcorp.com",
"company_industry": "Technology",
"company_employees": "51-200",
"company_revenue": "$10M-$50M",
"company_description": "Tech Corp is a leading technology company...",
"search_query": "software engineer",
"scraped_at": "2025-01-15T10:30:00.000Z"
}

πŸ”— Integration

This Actor can be easily integrated with:

  • Zapier: Use the "Run Actor" action with dataset polling
  • Make.com: Use the HTTP module to call the Actor API
  • n8n: Use the Apify node or HTTP Request node
  • OpenAI MCP: Connect via the Apify MCP server

⚠️ Notes

  • Uses Indeed's GraphQL API (same as the Indeed iOS mobile app)
  • Supports job searches across multiple countries
  • Automatically deduplicates jobs by job ID
  • Salary data is extracted when available
  • Company info includes logo, industry, and size data