# Scrape Google Jobs Aggregated Listings

**Use case:** 

Scrape Google for Jobs aggregated listings across 20+ boards in one call: title, company, salary, description, job type, source (Indeed/LinkedIn/Glassdoor), and

## Input

```json
{
  "queries": [
    "software engineer new york"
  ],
  "maxResults": 10,
  "country": "us",
  "location": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "company_name": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "job_type": {
    "label": "Job Type",
    "format": "text"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "apply_url": {
    "label": "Apply URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Jobs Scraper - Aggregated Listings, Salary, Apply URLs](https://apify.com/thirdwatch/google-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/google-jobs-scraper) to learn more, explore other use cases, and run it yourself.