# Backfill a job board with Google Jobs results

**Use case:** 

Backfill your job board with fresh Google Jobs listings. Each result returns the title, company, location, source, and posting date. Pay per result.

## Input

```json
{
  "query": "software engineer",
  "location": "United States",
  "country": "None",
  "language": "None",
  "google_domain": "google.com",
  "num_results": 20,
  "max_pagination": 1,
  "include_lrad": false,
  "lrad_value": "5",
  "max_delay": 1,
  "output_file": "google_jobs_results.json",
  "company_filter_regex": false
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "company_name": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "via": {
    "label": "Source",
    "format": "text"
  },
  "detected_extensions.posted_at": {
    "label": "Posted Date",
    "format": "date"
  },
  "detected_extensions.schedule_type": {
    "label": "Schedule",
    "format": "text"
  },
  "detected_extensions.experience_level": {
    "label": "Experience",
    "format": "text"
  },
  "extensions": {
    "label": "Additional Info",
    "format": "array"
  },
  "job_highlights": {
    "label": "Highlights",
    "format": "array"
  },
  "related_links": {
    "label": "Related Links",
    "format": "object"
  }
}
```

## 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.