# Hiring Signals for 10 Tech Companies

**Use case:** 

One row per company for ten tech employers: how many roles are open, how many opened in the last 7, 30 and 90 days, remote share, top departments and cities, and the median published salary range. Swap in your own target accounts to see who is hiring, and for what. Reads the public job-board APIs of Greenhouse, Lever and Ashby. No login, no proxies.

## Input

```json
{
  "companies": [
    "https://job-boards.greenhouse.io/airbnb",
    "https://job-boards.greenhouse.io/stripe",
    "https://job-boards.greenhouse.io/figma",
    "https://job-boards.greenhouse.io/gitlab",
    "https://job-boards.greenhouse.io/coinbase",
    "https://job-boards.greenhouse.io/databricks",
    "https://jobs.ashbyhq.com/openai",
    "https://jobs.ashbyhq.com/ramp",
    "https://jobs.lever.co/spotify",
    "https://jobs.lever.co/palantir"
  ],
  "mode": "summary",
  "daysBack": 0,
  "titleKeywords": [
    "engineer",
    "account executive"
  ],
  "locationKeywords": [
    "london",
    "new york"
  ],
  "remoteOnly": false,
  "maxJobsPerCompany": 50,
  "includeDescription": false
}
```

## Output

```json
{
  "companyName": {
    "label": "Company"
  },
  "ats": {
    "label": "System"
  },
  "openJobs": {
    "label": "Open jobs"
  },
  "newLast7d": {
    "label": "New 7d"
  },
  "newLast30d": {
    "label": "New 30d"
  },
  "newLast90d": {
    "label": "New 90d"
  },
  "remotePercent": {
    "label": "Remote %"
  },
  "topDepartments": {
    "label": "Top departments"
  },
  "topLocations": {
    "label": "Top locations"
  },
  "salaryCoveragePercent": {
    "label": "With salary %"
  },
  "medianSalaryMinUsd": {
    "label": "Median min USD"
  },
  "medianSalaryMaxUsd": {
    "label": "Median max USD"
  },
  "status": {
    "label": "Status"
  }
}
```

## About this Actor

This example demonstrates how to use [Company Jobs Scraper — Greenhouse, Lever, Ashby + Salaries](https://apify.com/tidyfeed/company-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tidyfeed/company-jobs-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/tidyfeed/company-jobs-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
