# 📊 Who is hiring in a city

**Use case:** 

Sweeps every opening within a radius of one city and returns the employers behind them: company profile, industry, headcount, revenue, rating and Indeed company page.

The result is a local hiring map you can refresh — who is active in a market, at what scale, in which sector — rather than a list of individual adverts.

Widen `radius` to cover a whole metro area.

## Input

```json
{
  "country": "us",
  "query": "nurse",
  "location": "Austin, TX",
  "maxRows": 500,
  "radius": "25",
  "remote": "remote",
  "level": "entry_level",
  "sort": "date",
  "jobType": "fulltime",
  "fromDays": "14",
  "urls": [
    "https://indeed.com/cmp/google",
    "https://www.indeed.com/jobs?q=engineer&l=San+Francisco&sc=0kf%3Afcckey%28b1f359487c26ba41%29%3B"
  ],
  "maxRowsPerUrl": 100,
  "enableUniqueJobs": true,
  "includeSimilarJobs": false
}
```

## Output

```json
{
  "companyLogoUrl": {
    "label": "Company logo URL",
    "format": "string"
  },
  "companyHeaderUrl": {
    "label": "Company header URL",
    "format": "string"
  },
  "companyCeo.photoUrl": {
    "label": "Photo URL",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "companyBriefDescription": {
    "label": "Company brief description",
    "format": "string"
  },
  "companyDescription": {
    "label": "Company description",
    "format": "string"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  },
  "companyCeo.name": {
    "label": "Name",
    "format": "string"
  },
  "companyAddresses": {
    "label": "Company addresses",
    "format": "array"
  },
  "companyIndustry": {
    "label": "Company industry",
    "format": "string"
  },
  "companyNumEmployees": {
    "label": "Number of employees",
    "format": "string"
  },
  "companyRevenue": {
    "label": "Company revenue",
    "format": "string"
  },
  "companyFounded": {
    "label": "Company founded",
    "format": "object"
  },
  "companyPhone": {
    "label": "Company phone",
    "format": "string"
  },
  "companyLinks.corporateWebsite": {
    "label": "Corporate website",
    "format": "string"
  },
  "companyLinks.facebook": {
    "label": "Facebook",
    "format": "string"
  },
  "companyLinks.instagram": {
    "label": "Instagram",
    "format": "string"
  },
  "companyLinks.twitter": {
    "label": "X / Twitter",
    "format": "string"
  },
  "rating": {
    "label": "Employer rating",
    "format": "object"
  },
  "employerLastReviewed": {
    "label": "Employer last reviewed",
    "format": "number"
  },
  "employerInsightsModel": {
    "label": "Employer insights",
    "format": "object"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "jobKey": {
    "label": "Job key",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [🚀 Indeed jobs scraper [PPR]](https://apify.com/borderline/indeed-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/borderline/indeed-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
