{
  "openapi": "3.0.1",
  "info": {
    "title": "Google Jobs Scraper — Listings, Salary, Filters",
    "description": "Scrape Google Jobs at scale: structured job listings with title, company, location, salary, posted date, job type, schedule, apply links, qualifications and responsibilities. Two data sources — Google Careers RPC (fast, ~1-2s) for Google's own openings.",
    "version": "1.0",
    "x-build-id": "sQWivwNZX6bzxfE17"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrape.badger~google-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrape.badger-google-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/scrape.badger~google-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrape.badger-google-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/scrape.badger~google-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrape.badger-google-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "q"
        ],
        "properties": {
          "q": {
            "title": "Job search query",
            "type": "string",
            "description": "Job title or keywords. Example: <b>software engineer</b>, <b>senior react developer</b>, <b>data scientist remote</b>."
          },
          "mode": {
            "title": "Data source",
            "enum": [
              "rpc",
              "serp"
            ],
            "type": "string",
            "description": "<b>rpc</b> (default, ~1-2s): Google Careers' own batchexecute RPC — structured JSON with rich fields (qualifications, responsibilities, apply URL). Scope: Google's own openings (~3-4k roles). <b>serp</b>: public Google Jobs vertical (aggregates LinkedIn / Indeed / Built In / ZipRecruiter). Slower; supports the full filter set (job_type, date_posted, ltype, radius).",
            "default": "rpc"
          },
          "gl": {
            "title": "Country",
            "type": "string",
            "description": "ISO 3166-1 alpha-2 country code (lowercase). Example: <b>us</b>, <b>gb</b>, <b>de</b>.",
            "default": "us"
          },
          "country": {
            "title": "Country (alias)",
            "type": "string",
            "description": "Alias for <b>gl</b>. Optional — use this or <b>gl</b>, not both."
          },
          "hl": {
            "title": "Language",
            "type": "string",
            "description": "ISO 639-1 language code. Example: <b>en</b>, <b>es</b>, <b>de</b>.",
            "default": "en"
          },
          "language": {
            "title": "Language (alias, locale form)",
            "type": "string",
            "description": "Alias for <b>hl</b>. Accepts locale form like <b>en-US</b>, <b>pt-BR</b>. Optional."
          },
          "domain": {
            "title": "Google domain",
            "type": "string",
            "description": "Google domain to hit. Example: <b>google.com</b>, <b>google.co.uk</b>, <b>google.de</b>.",
            "default": "google.com"
          },
          "location": {
            "title": "City / state / region",
            "type": "string",
            "description": "City / state / region for geo-targeting. Example: <b>New York, NY</b>, <b>London</b>. SERP mode only."
          },
          "job_type": {
            "title": "Job type",
            "enum": [
              "",
              "FULLTIME",
              "PARTTIME",
              "CONTRACTOR",
              "INTERN"
            ],
            "type": "string",
            "description": "Employment type filter. SERP mode only.",
            "default": ""
          },
          "date_posted": {
            "title": "Date posted",
            "enum": [
              "",
              "today",
              "3days",
              "week",
              "month"
            ],
            "type": "string",
            "description": "Restrict to postings within this window. SERP mode only.",
            "default": ""
          },
          "ltype": {
            "title": "Work arrangement",
            "enum": [
              "",
              "remote",
              "hybrid",
              "onsite",
              "work_from_home"
            ],
            "type": "string",
            "description": "Remote / hybrid / onsite filter. SERP mode only.",
            "default": ""
          },
          "lrad": {
            "title": "Search radius (miles)",
            "type": "string",
            "description": "Radius in miles around <b>location</b>. Example: <b>25</b>. SERP mode only."
          },
          "chips": {
            "title": "Chip filter string",
            "type": "string",
            "description": "Raw Google chip filter string. Example: <b>date_posted:today</b>. Optional — overrides the structured fields above when set."
          },
          "uds": {
            "title": "UDS filter token",
            "type": "string",
            "description": "Opaque UDS filter token copied from a Google Jobs URL. Optional."
          },
          "uule": {
            "title": "UULE-encoded location",
            "type": "string",
            "description": "UULE-encoded location string for precise geo targeting. Optional."
          },
          "max_pages": {
            "title": "Max pages",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many pages of jobs to fetch. Each page is a separate API call (costs N credits) and is walked via Google's <b>next_page_token</b>. Stops early if Google signals no more pages.",
            "default": 1
          },
          "next_page_token": {
            "title": "Start page token",
            "type": "string",
            "description": "Resume from a specific page by passing the <b>next_page_token</b> returned by a prior run. Optional."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}