# Google Jobs Listing API

{% hint style="success" %}
To enable this engine, set the **`engine=google_jobs_listing`** parameter.
{% endhint %}

While the [Google Jobs API](https://docs.webscrapingapi.com/google-search-api/google-search-engines/google-jobs-api) returns a list with all the available listings on the Google Jobs platform, the Google Jobs Listing API returns data scraped from a singular job. The job you want to scrape is identified by its ID.

{% hint style="info" %}
You can get the `job_id` via the [**Google Jobs API**](https://docs.webscrapingapi.com/google-search-api/google-search-engines/google-jobs-api).

This is the <mark style="color:red;background-color:orange;">**base 64 encoded value**</mark> of a JSON like this: {"job\_title":"Sr Software Developer (R\&D)","company\_name":"B. Braun Medical Inc.","htidocid":"U3hnego7LaXJ9lF7AAAAAA==","q":"programmer"}
{% endhint %}

<figure><img src="https://1192456954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9wbsYOleiAqS785aMtPp%2Fuploads%2FkRr8lEmchsujMcAzlBZc%2Fgoogle-jobs-listing-api.png?alt=media&#x26;token=091f3ebf-e163-45fc-8786-8858b1008498" alt=""><figcaption><p>Scrape Google Jobs Listings</p></figcaption></figure>

### Google Jobs Listing API Integraation Examples

We will use following URL as an example for this request:

```
https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=<YOUR_API_KEY>&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0=
```

### Ready to Use Google Jobs Listing API Scraping Scripts

{% tabs %}
{% tab title="cURL" %}

```bash
curl --request GET --url "https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D"
```

{% endtab %}

{% tab title="NodeJS" %}

```javascript
const http = require("https");

const options = {
  "method": "GET",
  "hostname": "serpapi.webscrapingapi.com",
  "port": null,
  "path": "/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
```

{% endtab %}

{% tab title="Python" %}

```python
import http.client

conn = http.client.HTTPSConnection("serpapi.webscrapingapi.com")

conn.request("GET", "/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
```

{% endtab %}

{% tab title="Go" %}

```go
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

{% endtab %}

{% tab title="Java" %}

```java
HttpResponse<String> response = Unirest.get("https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D")
  .asString();
```

{% endtab %}

{% tab title=".NET" %}

```csharp
var client = new RestClient("https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

{% endtab %}

{% tab title="Ruby" %}

```ruby
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=YOUR_API_KEY&q=eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0%3D")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

{% endtab %}
{% endtabs %}

### Google Jobs Listing API Parameter

#### #1: Query Parameter

<table><thead><tr><th width="187">Parameter</th><th width="107" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>q</code><br><mark style="color:red;background-color:red;">Required</mark></td><td align="center"><code>string</code></td><td>The base 64 encoded value obtained from the <a href="google-jobs-api">Google Jobs API</a> <code>job_id</code>.</td></tr></tbody></table>

To access this API, your GET request should be sent to the following address:

```
https://serpapi.webscrapingapi.com/v1?engine=google_jobs_listing&api_key=<YOUR_API_KEY>&q=<BASE_64_ENCODED_JOB_ID>
```

<details>

<summary>Response Example</summary>

```javascript
{
  "search_parameters": {
    "google_jobs_listing_url": "https://www.google.com/search?q=programmer&ibp=htl;jobs&hl=en&sourceid=chrome&ie=UTF-8#htivrt=jobs&htidocid=U3hnego7LaXJ9lF7AAAAAA==&sourceid=chrome&ie=UTF-8",
    "engine": "google_jobs_listing",
    "google_domain": "google.com",
    "device": "desktop",
    "query": "eyJqb2JfdGl0bGUiOiJTciBTb2Z0d2FyZSBEZXZlbG9wZXIgKFImRCkiLCJjb21wYW55X25hbWUiOiJCLiBCcmF1biBNZWRpY2FsIEluYy4iLCJodGlkb2NpZCI6IlUzaG5lZ283TGFYSjlsRjdBQUFBQUE9PSIsInEiOiJwcm9ncmFtbWVyIn0="
  },
  "search_information": {
    "organic_results_state": "Results for exact spelling",
    "total_results": null,
    "time_taken_displayed": null,
    "query_displayed": null
  },
  "google_jobs_listing": {
    "apply_options": [
      {}
    ],
    "ratings": [
      {
        "source": "Indeed",
        "link": "https://www.indeed.com/cmp/B.-Braun-Medical-Inc/reviews?fcountry=US&floc=Daytona+Beach,+FL&utm_campaign=google_jobs_reviews&utm_source=google_jobs_reviews&utm_medium=organic",
        "rating": " 3.9 ",
        "reviews": " 945 reviews"
      },
      {
        "source": "PayScale",
        "link": "https://www.payscale.com/research/US/Employer=B._Braun_Medical_Inc/Salary?utm_campaign=google_jobs_reviews&utm_source=google_jobs_reviews&utm_medium=organic",
        "rating": " 3.8 ",
        "reviews": " 25 reviews"
      },
      {
        "source": "Comparably",
        "link": "https://www.comparably.com/companies/b-braun-medical?utm_campaign=google_jobs_reviews&utm_source=google_jobs_reviews&utm_medium=organic",
        "rating": " 4.7 ",
        "reviews": " 98 reviews"
      }
    ],
    "salaries": [
      {
        "source": "ZipRecruiter",
        "link": "https://www.ziprecruiter.com/Salaries/R-D-Engineer-Salary-in-Allentown,PA?utm_campaign=google_jobs_salary&utm_source=google_jobs_salary&utm_medium=organic",
        "salary_currency": "$",
        "salary_from": "56k",
        "salary_to": "110k",
        "salary_periodicity": "per year",
        "thumbnail": "https://encrypted-tbn2.gstatic.com/faviconV2?url=https://www.ziprecruiter.com&client=HORIZON&size=16&type=FAVICON&fallback_opts=TYPE,SIZE,URL&nfrp=0",
        "based_on": " local employers"
      }
    ]
  }
}
```

</details>
