# Google Jobs Scraper – Extract Job Listings from Google Jobs

**Use case:** 

Scrape Google Jobs listings by keyword, location & date. Get job title, company, salary, description, and apply links. No API key needed. Export to JSON or CSV.

## Input

```json
{
  "keyword": "software engineer jobs",
  "location": "New York, NY",
  "maxResults": 10,
  "gl": "us",
  "datePosted": "day",
  "hl": "en"
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "via": {
    "label": "Source",
    "format": "string"
  },
  "metadata": {
    "label": "Details",
    "format": "object"
  },
  "applyLink": {
    "label": "Apply Links",
    "format": "array"
  },
  "logo": {
    "label": "Logo",
    "format": "image"
  }
}
```

## About this Actor

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