# Job Openings Data Extractor for Careers Pages

**Use case:** 

Extract job openings from careers pages, including job title, location, and department in structured JSON format.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://apify.com/jobs"
    }
  ],
  "useAI": true,
  "aiInstructions": "List all job openings on the page with the job title, location, and department for each.",
  "includeScreenshot": true,
  "proxyConfig": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "content.screenshot.url": {
    "label": "Screenshot",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "extractedBy": {
    "label": "Extracted By",
    "format": "array"
  },
  "basicExtraction": {
    "label": "Regex Extraction",
    "format": "object"
  },
  "aiExtraction": {
    "label": "AI Extraction",
    "format": "object"
  },
  "metadata": {
    "label": "Metadata",
    "format": "object"
  },
  "ok": {
    "label": "OK",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Scraper](https://apify.com/dz_omar/ai-lead-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dz_omar/ai-lead-extractor) to learn more, explore other use cases, and run it yourself.