Scrapingdog

Google Jobs Scraping API

The Google Jobs Scraping API retrieves job listings from Google Jobs including job titles, company names, locations, salary ranges, and apply links. Costs 5 API credits per request.

Endpoint: https://api.scrapingdog.com/google_jobs

API Parameters

🔑

Authentication

  • api_key Required
    This is your API key.

    Type: String
🔍

Search Query

  • query Required
    Google Search Query

    Type: String
🌍

Geographic Location and Localization

  • country Optional
    Name of the country. The name should be in ISO 3166 Alpha-2 format.

    Default: us

    Type: String
  • language Optional
    The language of the requested results.

    Default: en_us

    Type: String
  • uule Optional
    It is a parameter that specifies the geographic location or locale for which the search results should be tailored.

    Type: String
  • domain Optional
    To obtain local results from a specific country, for example, for India, it will be "google.co.in."

    Default: google.com

    Type: String

️ Advanced Filters

  • next_page_token Optional
    The parameter specifies the next page token, which is used to fetch the subsequent page of results.

    Type: String
  • chips Optional
    Extra query filters. Chips can be found at the top of the job search page.

    Type: String
  • lrad Optional
    This parameter will help to search the job results within a particular radius.

    Type: String
  • ltype Optional
    This parameter will help in filtering the results by work from home.

    Type: String
  • uds Optional
    The parameter allows filtering of search results. It is a string provided by Google that acts as a filter.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_jobs?api_key=APIKEY&query=jobs+in+london"
API Response
{
  "jobs_results": [
    {
      "title": "Barista | London",
      "company_name": "Blank Street",
      "location": "London, UK",
      "via": "via Greenhouse",
      "extensions": ["Full-time and Part-time", "No degree mentioned"],
      "apply_links": [{"title": "Apply on Greenhouse", "link": "https://boards.greenhouse.io/..."}]
    },
    {
      "title": "Events & Digital Content Officer",
      "company_name": "London School of Economics and Political Science",
      "location": "London, UK",
      "extensions": ["2 days ago", "£33,558–£38,541 a year", "Full-time"]
    }
  ]
}