{
  "openapi": "3.0.1",
  "info": {
    "title": "Indeed & ZipRecruiter Scraper — Jobs, Hiring Signals, Profiles",
    "description": "Scrape Indeed and ZipRecruiter in one run: company hiring signals with live job totals, fresh job postings by company or keyword with exact timestamps and salaries, and company profile enrichment. CSV-ready output for recruiting outreach, lead scoring, and market research. X402, MPP, MCP",
    "version": "0.1",
    "x-build-id": "RocBZ4FPScHXPjzZm"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/openclawai~indeed-ziprecruiter-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-openclawai-indeed-ziprecruiter-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/openclawai~indeed-ziprecruiter-scraper/runs": {
      "post": {
        "operationId": "runs-sync-openclawai-indeed-ziprecruiter-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/openclawai~indeed-ziprecruiter-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-openclawai-indeed-ziprecruiter-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",
        "properties": {
          "scanMode": {
            "title": "Scan mode",
            "enum": [
              "companies",
              "keywords",
              "profiles"
            ],
            "type": "string",
            "description": "companies = hiring signal + profile + jobs per target company. keywords = search jobs by keyword across both boards (no company targeting). profiles = company profiles only (fast, no job feed).",
            "default": "companies"
          },
          "keywords": {
            "title": "Keywords (keyword mode)",
            "type": "array",
            "description": "Search terms for scanMode=keywords, one per entry (max 10). Supports Indeed operators like quotes and -exclusions, e.g. '\"registered nurse\" -travel'.",
            "items": {
              "type": "string"
            }
          },
          "companies": {
            "title": "Target companies",
            "type": "array",
            "description": "Companies to look up. Each entry can be just a name (\"Insperity\"), or a name with its website for precise matching (\"Kelly | kellyservices.com\"). Via the API you may also pass {name, website} objects. The website disambiguates common names (e.g. Kelly Services vs. unrelated 'Kelly' firms).",
            "items": {
              "type": "string"
            }
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Search location. Recommended — ZipRecruiter returns poor/empty results without one (US & Canada only).",
            "default": "United States"
          },
          "recencyMode": {
            "title": "Which jobs to return",
            "enum": [
              "last48h",
              "latest10"
            ],
            "type": "string",
            "description": "last48h = only postings within the recency window (see 'Hours old'). latest10 = the 10 most recent postings regardless of age.",
            "default": "last48h"
          },
          "hoursOld": {
            "title": "Hours old (recency window)",
            "minimum": 1,
            "maximum": 720,
            "type": "integer",
            "description": "Used when 'Which jobs to return' = last48h. Enforced at day granularity (ZipRecruiter only reports dates, not times), so 48 = a 2-day window.",
            "default": 48
          },
          "maxJobsPerCompany": {
            "title": "Max jobs per company",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Ceiling on postings fetched per company per site. Also caps the 'active jobs' count (neither board exposes a true total).",
            "default": 50
          },
          "sites": {
            "title": "Job boards",
            "type": "array",
            "description": "Only Indeed and ZipRecruiter are supported by this actor.",
            "items": {
              "type": "string",
              "enum": [
                "indeed",
                "zip_recruiter"
              ],
              "enumTitles": [
                "Indeed",
                "ZipRecruiter"
              ]
            },
            "default": [
              "indeed",
              "zip_recruiter"
            ]
          },
          "includeDescription": {
            "title": "Include full job description",
            "type": "boolean",
            "description": "Attach the full description to each returned job. Adds latency on Indeed.",
            "default": false
          },
          "emitJobRecords": {
            "title": "Also emit one flat row per job",
            "type": "boolean",
            "description": "Besides the per-company record (nested latest_jobs), push each returned job as its own flat dataset row (record_type='job') so CSV export is clean. Filter the record_type column to separate companies from jobs.",
            "default": true
          },
          "countryIndeed": {
            "title": "Indeed country",
            "type": "string",
            "description": "Country domain for Indeed (e.g. usa, uk, canada).",
            "default": "usa"
          },
          "matchThreshold": {
            "title": "Company match threshold",
            "minimum": 0.5,
            "maximum": 1,
            "type": "number",
            "description": "Fuzzy-match strictness (0-1) for keeping a posting whose employer name resembles the target. Higher = stricter.",
            "default": 0.82
          },
          "descriptionFormat": {
            "title": "Description format",
            "enum": [
              "markdown",
              "html"
            ],
            "type": "string",
            "description": "Format for job descriptions when included.",
            "default": "markdown"
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy for scraping. Residential is strongly recommended — ZipRecruiter 429-blocks datacenter IPs.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}