# Export Google Jobs Listings to CSV

**Use case:** 

Search Google Jobs and download the listings as a CSV: job title, company, location, posting source, and link. Exports to Excel and Sheets too.

## Input

```json
{
  "query": "Software Engineer",
  "location": "San Francisco, CA",
  "country": "None",
  "language": "None",
  "google_domain": "google.com",
  "num_results": 100,
  "max_pagination": 0,
  "include_lrad": false,
  "lrad_value": "5",
  "max_delay": 1,
  "output_file": "google_jobs_results.json",
  "company_filter_regex": false
}
```

## Output

```json
{
  "query": {
    "label": "Search Query",
    "format": "string"
  },
  "title": {
    "label": "Job Title"
  },
  "company_name": {
    "label": "Company"
  },
  "location": {
    "label": "Location"
  },
  "via": {
    "label": "Via"
  },
  "share_link": {
    "label": "Link"
  },
  "job_id": {
    "label": "Job ID"
  },
  "description": {
    "label": "Description"
  }
}
```

## About this Actor

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