{
  "openapi": "3.0.1",
  "info": {
    "title": "Hiring.cafe Jobs Scraper & API",
    "description": "Scrape detailed job listings from Hiring.cafe — titles, salaries, companies, locations, tech stacks, and 30+ fields from 2.8M+ postings across 46 ATS platforms. Filter by keyword, location, salary, seniority, and more. Export as JSON, CSV, Excel, or access via API.",
    "version": "1.4",
    "x-build-id": "HH2qr6uXtutFIY2rt"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parsebird~hiring-cafe-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parsebird-hiring-cafe-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/parsebird~hiring-cafe-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parsebird-hiring-cafe-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/parsebird~hiring-cafe-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parsebird-hiring-cafe-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": {
          "searchQueries": {
            "title": "Search Queries",
            "type": "array",
            "description": "Keywords to search on Hiring.cafe (e.g. \"software engineer\", \"data scientist\"). Leave empty to return unfiltered results.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Filter to jobs in these locations. Plain strings like \"San Francisco\" or \"United States\".",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "workplaceTypes": {
            "title": "Workplace Types",
            "type": "array",
            "description": "Filter by workplace type.",
            "items": {
              "type": "string",
              "enum": [
                "Remote",
                "Hybrid",
                "Onsite"
              ],
              "enumTitles": [
                "Remote",
                "Hybrid",
                "Onsite"
              ]
            },
            "default": [
              "Remote",
              "Hybrid",
              "Onsite"
            ]
          },
          "seniorityLevels": {
            "title": "Seniority Levels",
            "type": "array",
            "description": "Filter by seniority level.",
            "items": {
              "type": "string",
              "enum": [
                "No Prior Experience Required",
                "Entry Level",
                "Mid Level",
                "Senior Level",
                "Director",
                "Executive"
              ],
              "enumTitles": [
                "No Prior Experience Required",
                "Entry Level",
                "Mid Level",
                "Senior Level",
                "Director",
                "Executive"
              ]
            },
            "default": [
              "No Prior Experience Required",
              "Entry Level",
              "Mid Level",
              "Senior Level",
              "Director",
              "Executive"
            ]
          },
          "commitmentTypes": {
            "title": "Commitment Types",
            "type": "array",
            "description": "Filter by commitment type.",
            "items": {
              "type": "string",
              "enum": [
                "Full Time",
                "Part Time",
                "Contract",
                "Internship",
                "Temporary",
                "Seasonal",
                "Volunteer"
              ],
              "enumTitles": [
                "Full Time",
                "Part Time",
                "Contract",
                "Internship",
                "Temporary",
                "Seasonal",
                "Volunteer"
              ]
            },
            "default": [
              "Full Time",
              "Part Time",
              "Contract",
              "Internship",
              "Temporary",
              "Seasonal",
              "Volunteer"
            ]
          },
          "dateFetchedPastNDays": {
            "title": "Date Fetched (Past N Days)",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Only include jobs fetched within the last N days.",
            "default": 30
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of jobs to return across all queries.",
            "default": 50
          },
          "jobTitleQuery": {
            "title": "Job Title Query",
            "type": "string",
            "description": "Filter to jobs whose title contains this phrase.",
            "default": ""
          },
          "jobDescriptionQuery": {
            "title": "Job Description Query",
            "type": "string",
            "description": "Filter to jobs whose description contains this phrase.",
            "default": ""
          },
          "technologyKeywordsQuery": {
            "title": "Technology Keywords Query",
            "type": "string",
            "description": "Match against parsed tech-stack tags (e.g. python, react).",
            "default": ""
          },
          "requirementsKeywordsQuery": {
            "title": "Requirements Keywords Query",
            "type": "string",
            "description": "Match against parsed requirement bullets.",
            "default": ""
          },
          "companyNames": {
            "title": "Company Names (Whitelist)",
            "type": "array",
            "description": "Only include jobs from these companies (exact match).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludedCompanyNames": {
            "title": "Excluded Company Names",
            "type": "array",
            "description": "Exclude jobs from these companies (exact match).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companyKeywords": {
            "title": "Company Keywords (Whitelist)",
            "type": "array",
            "description": "Substring-match the company name (whitelist).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludedCompanyKeywords": {
            "title": "Excluded Company Keywords",
            "type": "array",
            "description": "Substring-match the company name (blacklist).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "Limit to companies in these industries.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludedIndustries": {
            "title": "Excluded Industries",
            "type": "array",
            "description": "Exclude companies in these industries.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "salaryCurrency": {
            "title": "Salary Currency",
            "enum": [
              "",
              "USD",
              "EUR",
              "GBP",
              "CAD",
              "AUD",
              "INR",
              "JPY",
              "CNY",
              "MXN",
              "BRL"
            ],
            "type": "string",
            "description": "Filter by salary currency. Leave empty for any currency.",
            "default": ""
          },
          "salaryFrequency": {
            "title": "Salary Frequency",
            "enum": [
              "",
              "Yearly",
              "Monthly",
              "Weekly",
              "Daily",
              "Hourly"
            ],
            "type": "string",
            "description": "Filter by salary frequency. Leave empty for any frequency.",
            "default": ""
          },
          "minSalary": {
            "title": "Minimum Salary",
            "type": "integer",
            "description": "Lower bound for compensation in the chosen currency and frequency."
          },
          "maxSalary": {
            "title": "Maximum Salary",
            "type": "integer",
            "description": "Upper bound for compensation in the chosen currency and frequency."
          },
          "onlyTransparentSalaries": {
            "title": "Only Transparent Salaries",
            "type": "boolean",
            "description": "Drop jobs that don't publish a salary range.",
            "default": false
          },
          "minYearsExperience": {
            "title": "Min Years of Experience",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Filter to jobs requiring at least this many years of experience.",
            "default": 0
          },
          "maxYearsExperience": {
            "title": "Max Years of Experience",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Filter to jobs requiring at most this many years of experience.",
            "default": 20
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "default",
              "newest",
              "oldest",
              "salary_high_to_low",
              "salary_low_to_high"
            ],
            "type": "string",
            "description": "Sort order for results.",
            "default": "default"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}