{
  "openapi": "3.0.1",
  "info": {
    "title": "Jobs Search API — Indeed, LinkedIn & Glassdoor Aggregator",
    "description": "Aggregate job postings from every major board — Indeed, LinkedIn, Glassdoor, ZipRecruiter and company career pages — in one run via Google for Jobs. 4 operations: job search, full job details with required skills and seniority, salary estimates by title and per company. Clean JSON, pay per result.",
    "version": "1.0",
    "x-build-id": "NM4vowFR7xC4vLu5x"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sian.agency~jsearch-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sian.agency-jsearch-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/sian.agency~jsearch-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-sian.agency-jsearch-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/sian.agency~jsearch-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-sian.agency-jsearch-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": [
          "operation"
        ],
        "properties": {
          "operation": {
            "title": "🎯 Operation — what do you want to scrape?",
            "enum": [
              "jobSearch",
              "jobDetails",
              "estimatedSalary",
              "companySalary"
            ],
            "type": "string",
            "description": "🎯 **PICK ONE OPERATION PER RUN.** Each run produces one clean dataset matching the chosen mode.\n\n- **🔍 Job Search** — search every job board at once via Google for Jobs, paginated (~10 jobs/page)\n- **📄 Job Details** — deep details for one job (required skills, seniority, experience, visa, salary) — by Job ID\n- **💵 Estimated Salary** — estimated pay for a title + location, by hourly/monthly/yearly period\n- **🏢 Company Salary** — estimated pay for a title inside a specific company\n\n💡 **TIP:** Run Job Search first to discover Job IDs, then drill into Job Details per posting.",
            "default": "jobSearch"
          },
          "query": {
            "title": "🔍 Search Query (for Job Search)",
            "type": "string",
            "description": "🔍 **Required for `Job Search` operation.**\n\nA free-form job search query — exactly what you would type into Google for Jobs.\n- `software engineer in new york`\n- `remote marketing manager`\n- `registered nurse chicago`\n\n💡 **TIP:** Include the location in the query for best results, or use the `Work from home` toggle for remote-only.\n\n⚠️ **Ignored** for all other operations."
          },
          "jobId": {
            "title": "📄 Job ID (for Job Details)",
            "type": "string",
            "description": "📄 **Required for `Job Details` operation.**\n\nThe Job ID from a Job Search result row (the `jobId` field, e.g. `22jWL_JNHtSxAieXAAAAAA==`).\n\n💡 **TIP:** Run `Job Search` first, collect the `jobId` values, then loop through Job Details to enrich each posting with required skills, seniority, and experience.\n\n⚠️ **Ignored** for all other operations."
          },
          "jobTitle": {
            "title": "💼 Job Title (for Salary operations)",
            "type": "string",
            "description": "💼 **Required for `Estimated Salary` and `Company Salary`.**\n\nThe job title to estimate pay for.\n- `nurse`\n- `software engineer`\n- `data analyst`\n\n💡 **TIP:** Common, broad titles return the most reliable salary data. Very niche titles may return no estimate.\n\n⚠️ **Ignored** for Job Search and Job Details."
          },
          "location": {
            "title": "📍 Location (for Estimated Salary)",
            "type": "string",
            "description": "📍 **Required for `Estimated Salary`** (optional for `Company Salary`).\n\nThe location to estimate pay for.\n- `United States`\n- `New York, NY`\n- `San Francisco, CA`\n\n💡 **TIP:** Broad locations (`United States`, a state, or a metro) return the most reliable estimates. A very specific address may return no data.\n\n⚠️ **Ignored** for Job Search and Job Details."
          },
          "company": {
            "title": "🏢 Company (for Company Salary)",
            "type": "string",
            "description": "🏢 **Required for `Company Salary` operation.**\n\nThe company name to estimate in-company pay for.\n- `Google`\n- `Amazon`\n- `Microsoft`\n\n⚠️ **Ignored** for all other operations."
          },
          "country": {
            "title": "🌍 Country",
            "type": "string",
            "description": "🌍 ISO 3166-1 alpha-2 country code for Job Search / Job Details (e.g. `us`, `gb`, `ca`, `de`, `in`). Default `us`."
          },
          "datePosted": {
            "title": "📅 Date Posted (for Job Search)",
            "enum": [
              "all",
              "today",
              "3days",
              "week",
              "month"
            ],
            "type": "string",
            "description": "Filter Job Search results by how recently the job was posted.\n\n- `all` (default)\n- `today`\n- `3days`\n- `week`\n- `month`\n\nIgnored for all other operations.",
            "default": "all"
          },
          "employmentTypes": {
            "title": "🧑‍💼 Employment Types (for Job Search)",
            "type": "string",
            "description": "Optional. Comma-separated employment types to filter Job Search.\n\nValid values: `FULLTIME`, `CONTRACTOR`, `PARTTIME`, `INTERN`. Example: `FULLTIME,CONTRACTOR`.\n\nIgnored for all other operations."
          },
          "workFromHome": {
            "title": "🏠 Work From Home / Remote only",
            "type": "boolean",
            "description": "Optional. For `Job Search` — return only remote / work-from-home jobs when enabled.",
            "default": false
          },
          "jobRequirements": {
            "title": "🎓 Job Requirements (for Job Search)",
            "type": "string",
            "description": "Optional. Comma-separated experience/education filters for Job Search.\n\nValid values: `under_3_years_experience`, `more_than_3_years_experience`, `no_experience`, `no_degree`.\n\nIgnored for all other operations."
          },
          "radius": {
            "title": "📏 Radius (km)",
            "minimum": 1,
            "type": "integer",
            "description": "Optional. Search/salary radius in kilometres from the location in the query. For Job Search and Estimated Salary."
          },
          "excludeJobPublishers": {
            "title": "🚫 Exclude Publishers (for Job Search)",
            "type": "string",
            "description": "Optional. Comma-separated publisher names to exclude from Job Search results (e.g. `BeeBe,Dice`)."
          },
          "locationType": {
            "title": "🗺️ Salary Location Type",
            "enum": [
              "ANY",
              "CITY",
              "STATE",
              "COUNTRY"
            ],
            "type": "string",
            "description": "Optional. For `Estimated Salary` / `Company Salary` — scope of the location.\n\n- `ANY` (default)\n- `CITY`\n- `STATE`\n- `COUNTRY`",
            "default": "ANY"
          },
          "yearsOfExperience": {
            "title": "🧮 Years of Experience (Salary)",
            "enum": [
              "ALL",
              "LESS_THAN_ONE",
              "ONE_TO_THREE",
              "FOUR_TO_SIX",
              "SEVEN_TO_NINE",
              "TEN_TO_FOURTEEN",
              "ABOVE_FIFTEEN"
            ],
            "type": "string",
            "description": "Optional. For `Estimated Salary` / `Company Salary` — experience bracket.\n\n- `ALL` (default)\n- `LESS_THAN_ONE`\n- `ONE_TO_THREE`\n- `FOUR_TO_SIX`\n- `SEVEN_TO_NINE`\n- `TEN_TO_FOURTEEN`\n- `ABOVE_FIFTEEN`",
            "default": "ALL"
          },
          "language": {
            "title": "🗣️ Language (for Job Search)",
            "type": "string",
            "description": "Optional. ISO 639 language code for Job Search results (e.g. `en`, `es`, `de`)."
          },
          "maxPages": {
            "title": "📄 Max pages to fetch",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "📄 **Applies to `Job Search` only** (~10 jobs per page). Ignored for single-record operations.\n\n💡 **TIP:** Start small (1–3 pages) to preview results before scaling up. Pagination stops automatically when Google for Jobs reports no more results.\n\n⚠️ Hard cap: 20 pages (~200 jobs) to prevent runaway runs.",
            "default": 3
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}