> ## Documentation Index
> Fetch the complete documentation index at: https://v3.captaindata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Indeed Jobs

> Extract a list of job ads from an Indeed Job search.

Extract a list of job offers from an Indeed Job search by providing an Indeed jobs search URL. This action is useful for market study, competitor analysis, and sourcing.

<Steps>
  <Step title="Navigate to Indeed Jobs Search">
    Go to a Jobs search page such as
    [https://fr.indeed.com/jobs?q=growth\&amp;l=Paris](https://fr.indeed.com/jobs?q=growth\&amp;l=Paris)".
  </Step>

  <Step title="Apply Filters">Apply your desired filters.</Step>
  <Step title="Copy URL">Copy the URL from your browser.</Step>
  <Step title="Paste URL">Paste it into the provided field.</Step>
</Steps>

<Warning>
  The automation does not accept URLs with "QUOTES" in the Indeed Search bar,
  e.g., "Drafter" OR "REVIT".
</Warning>

<Info>
  Available countries: UK, FR, NZ, US, AUS. For assistance with other countries,
  <a href="mailto:support@captaindata.com">contact us</a>.
</Info>

### Inputs

<ParamField path="indeed_job_search_url" type="string" required={true} primary={true}>
  Indeed Job URL should look like
  "[https://www.indeed.com/q-growth-l-Paris-jobs.html](https://www.indeed.com/q-growth-l-Paris-jobs.html)" or
  "[https://www.indeed.com/jobs](https://www.indeed.com/jobs)".
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={100} minimum={1} maximum={4000}>
  Maximum number of job ads to extract per search input.
</ParamField>

### Output Fields

The action returns the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="company_name" type="string">
      The name of the company offering the job.
    </ResponseField>

    <ResponseField name="indeed_job_id" type="string">
      The unique identifier for the job on Indeed.
    </ResponseField>

    <ResponseField name="indeed_job_url" type="string">
      The URL of the job listing on Indeed.
    </ResponseField>

    <ResponseField name="location" type="string">
      The location of the job.
    </ResponseField>

    <ResponseField name="title" type="string">
      The title of the job.
    </ResponseField>
  </Expandable>
</ResponseField>

Here is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "company_name": "string",
    "indeed_job_id": "string",
    "indeed_job_url": "string",
    "location": "string",
    "title": "string"
  }
  ```
</Accordion>
