Google Jobs API (Async)
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"query": "QUERY",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"hl": "LANGUAGE",
"gl": "GEOLOCATION",
"start": "STARTING_POSITION",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/google/jobs"import requests
url = "https://async.scraperapi.com/structured/google/jobs"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"query": "QUERY",
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"hl": "LANGUAGE",
"gl": "GEOLOCATION",
"start": "STARTING_POSITION",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)curl -X POST \
-H "Content-Type: application/json" \
-d '{
"apiKey": "API_KEY",
"queries": ["QUERY1", "QUERY2"],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"hl": "LANGUAGE",
"gl": "GEOLOCATION",
"start": "STARTING_POSITION",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}' \
"https://async.scraperapi.com/structured/google/jobs"import requests
url = "https://async.scraperapi.com/structured/google/jobs"
headers = {
"Content-Type": "application/json"
}
data = {
"apiKey": "API_KEY",
"queries": ["QUERY1", "QUERY2"],
"country_code": "COUNTRY_CODE",
"tld": "TLD",
"hl": "LANGUAGE",
"gl": "GEOLOCATION",
"start": "STARTING_POSITION",
"callback": {
"type": "webhook",
"url": "YYYYY"
}
}
response = requests.post(url, json=data, headers=headers)
print(response.text)Parameter
Details
Google parameters supported by this endpoint
Google Parameters
Details
Sample Response
Last updated

