Google Jobs API (Async)

This endpoint will retrieve jobs data from an Google jobs result page and transform it into usable JSON.

Single Query Request:

curl -X POST \
	-H "Content-Type: application/json" \
	-d '{
				"apiKey":APIKEY,
				"query":QUERY,
				"tld":TLD,
				"uule":UULE,
				"num":NUM,
				"hl":HOSTLANGUAGE,
				"gl":GUESTLANGUAGE,
				"ie":QUERYENCODING,
				"oe":RESULTENCODING,
				"start":START
			"callback": {
				"type": "webhook",
				"url": "YYYY"
			}
		}' \
"https://async.scraperapi.com/structured/google/jobs"

Multiple Query Request:

curl -X POST \
	-H "Content-Type: application/json" \
	-d '{
				"apiKey":APIKEY,
				"queries":[QUERY1,QUERY2,QUERY3],
				"tld":TLD,
				"uule":UULE,
				"num":NUM,
				"hl":HOSTLANGUAGE,
				"gl":GUESTLANGUAGE,
				"ie":QUERYENCODING,
				"oe":RESULTENCODING,
				"start":START
			"callback": {
				"type": "webhook",
				"url": "YYYY"
			}
		}' \
"https://async.scraperapi.com/structured/google/jobs"

Multiple Parameters can be used with this method:

REQUIRED

APIKEY

User account’s normal API key.

QUERY

Google Search Query.

OPTIONAL

TLD

Set this value to scrape the respective Google domain. Valid values include tlds for those countries or regions where Google has a search engine:

ae: (google.ae)

ca: (google.ca)

cn: (google.cn)

co.jp: (google.co.jp)

co.uk: (google.co.uk)

com: (google.com)

com.au: (google.com.au)

com.be: (google.com.be)

com.br: (google.com.br)

com.mx: (google.com.mx)

com.tr: (google.com.tr)

de: (google.de)

eg: (google.eg)

es: (google.es)

fr: (google.fr)

in: (google.in)

it: (google.it)

nl: (google.nl)

pl: (google.pl)

sa: (google.sa)

se: (google.se)

sg: (google.sg)

COUNTRY

Valid values are two letter country codes for which we offer Geo Targeting (e.g. “au”, “es”, “it”, etc.).

Where a Google domain needs to be scraped from another country (e.g. scraping Google.com from Canada, both TLD and COUNTRY parameters must be specified.

We also support Google Search parameters for this endpoint.

UULE: Set a region for a search. For example: w+CAIQICINUGFyaXMsIEZyYW5jZQ.

You can find an online UULE generator here: https://site-analyzer.pro/services-seo/uule/ NUM: Number of results HL: Host Language. For example: DE GL: Boosts matches whose country of origin matches the parameter value.

For example: DE IE: Character encoding how the engine interpret the query string. For example: UTF8 OE: Character encoding used for the results. For example: UTF8 START: Set the starting offset in the result list. When start=10 set the first element in the result list will be the 10th search result (meaning it starts with page 2 of results if the "num" is 10)

Sample Response

Single Query Request:

{
	"id": "89b388bf-0cea-49c1-8db6-9e00042c8c3a",
	"status": "running",
	"statusUrl": "http://async.scraperapi.com/structured/google/jobs/89b388bf-0cea-49c1-8db6-9e00042c8c3a",
	"query": "Accountant"
}

Multiple Query Request:

[
	{
		"id": "2955ad23-c812-475c-bc52-572576815d78",
		"status": "running",
		"statusUrl": "http://async.scraperapi.com/structured/google/jobs/2955ad23-c812-475c-bc52-572576815d78",
		"query": "Accountant"
	},
	{
		"id": "120a7344-7832-4fd0-a64f-ce9cd39726f3",
		"status": "running",
		"statusUrl": "http://async.scraperapi.com/structured/google/jobs/120a7344-7832-4fd0-a64f-ce9cd39726f3",
		"query": "Sitebuilder"
	}
]

After the job(s) finish, you will find the result under the response key in the response JSON object. The structure is the same as in the corresponding SYNC data endpoint.

Last updated