{
  "openapi": "3.0.1",
  "info": {
    "title": "Google Jobs Scraper - Job Search & Apply Links",
    "description": "Search Google Jobs by keyword and location. Export unique jobs with titles, companies, full descriptions, salary text, posting dates, and direct ATS or job-board apply links. No Google login or external API key required.",
    "version": "0.2",
    "x-build-id": "LeTLb3gM0kaIyGznz"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/chronometrica~google-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-chronometrica-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/chronometrica~google-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-chronometrica-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/chronometrica~google-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-chronometrica-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": [
          "queries"
        ],
        "properties": {
          "market": {
            "title": "1. Google market",
            "enum": [
              "DZ-fr",
              "AR-es",
              "AT-de",
              "BS-en",
              "BH-ar",
              "BD-en",
              "BY-ru",
              "BE-nl",
              "BE-fr",
              "BJ-fr",
              "BO-es",
              "BW-en",
              "BR-pt",
              "BF-fr",
              "CM-fr",
              "CA-en",
              "CA-fr",
              "CL-es",
              "CO-es",
              "CR-es",
              "CI-fr",
              "CD-fr",
              "DK-da",
              "DO-es",
              "EC-es",
              "EG-ar",
              "SV-es",
              "ET-en",
              "FR-fr",
              "DE-de",
              "GH-en",
              "GR-el",
              "GT-es",
              "HT-fr",
              "HN-es",
              "HK-en",
              "IN-en",
              "ID-id",
              "IT-it",
              "JM-en",
              "JP-ja",
              "JO-ar",
              "KZ-ru",
              "KE-en",
              "KW-ar",
              "KG-ru",
              "LB-ar",
              "LS-en",
              "MW-en",
              "MY-en",
              "ML-fr",
              "MU-en",
              "MX-es",
              "MA-fr",
              "NA-en",
              "NL-nl",
              "NG-en",
              "OM-ar",
              "PK-en",
              "PA-es",
              "PY-es",
              "PE-es",
              "PH-en",
              "PT-pt",
              "PR-es",
              "QA-ar",
              "RU-ru",
              "RW-en",
              "SA-ar",
              "SN-fr",
              "SC-en",
              "SG-en",
              "SO-en",
              "ZA-en",
              "ES-es",
              "LK-en",
              "CH-fr",
              "CH-de",
              "CH-it",
              "TW-zh-TW",
              "TZ-en",
              "TH-th",
              "TG-fr",
              "TT-en",
              "TN-fr",
              "UG-en",
              "AE-en",
              "GB-en",
              "US-en",
              "UY-es",
              "UZ-ru",
              "VE-es",
              "VN-vi",
              "ZM-en",
              "ZW-en"
            ],
            "type": "string",
            "description": "Select a tested Google country site and result language. This setting does not guarantee that every job is in this country.",
            "default": "US-en"
          },
          "queries": {
            "title": "2. Job titles or keywords",
            "minItems": 1,
            "maxItems": 100,
            "type": "array",
            "description": "Enter one job title, skill, employer, or phrase per line. Do not add the location here when you use the location field below.",
            "items": {
              "type": "string",
              "minLength": 1,
              "pattern": "\\S",
              "maxLength": 200
            },
            "default": [
              "data analyst"
            ]
          },
          "location": {
            "title": "3. City or region - optional",
            "maxLength": 200,
            "type": "string",
            "description": "Google adds this location to every search. Leave it blank for broad results in the selected market. Use one location per run.",
            "default": ""
          },
          "maxItems": {
            "title": "Maximum saved jobs (shared limit)",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "The Actor stops after it saves this many unique jobs across all searches. You pay only for saved jobs. Google can return fewer jobs.",
            "default": 25
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}