# 🏢 Every opening from one company

**Use case:** 

Point the scraper at an Indeed company page and get that employer's full list of openings, plus the profile Indeed holds: industry, headcount, revenue, founding year and rating.

Run it on a competitor to see which teams they are growing, or on an employer you want to join.

Paste any `/cmp/<Company>/jobs` URL, from any Indeed domain. `/viewjob` URLs are not supported.

## Input

```json
{
  "country": "us",
  "query": "Analyst",
  "location": "New York",
  "maxRows": 10000,
  "remote": "remote",
  "level": "entry_level",
  "sort": "relevance",
  "jobType": "fulltime",
  "fromDays": "14",
  "urls": [
    "https://www.indeed.com/cmp/Google/jobs",
    "https://www.indeed.com/cmp/Amazon.com/jobs"
  ],
  "maxRowsPerUrl": 100,
  "enableUniqueJobs": true,
  "includeSimilarJobs": false
}
```

## Output

```json
{
  "companyLogoUrl": {
    "label": "Company logo URL",
    "format": "string"
  },
  "companyHeaderUrl": {
    "label": "Company header URL",
    "format": "string"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "age": {
    "label": "Job age",
    "format": "string"
  },
  "datePublished": {
    "label": "Date published",
    "format": "string"
  },
  "jobType": {
    "label": "Job type",
    "format": "array"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  },
  "rating": {
    "label": "Employer rating",
    "format": "object"
  },
  "descriptionText": {
    "label": "Description (text)",
    "format": "string"
  },
  "descriptionHtml": {
    "label": "Description (HTML)",
    "format": "string"
  },
  "benefits": {
    "label": "Benefits",
    "format": "array"
  },
  "occupation": {
    "label": "Occupation categories",
    "format": "array"
  },
  "attributes": {
    "label": "Attributes",
    "format": "array"
  },
  "workingSystem": {
    "label": "Working system",
    "format": "array"
  },
  "numOfCandidates": {
    "label": "Number of candidates",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "hiringDemand.isUrgentHire": {
    "label": "Urgently hiring",
    "format": "boolean"
  },
  "hiringDemand.isHighVolumeHiring": {
    "label": "High volume hiring",
    "format": "boolean"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "locale": {
    "label": "Locale",
    "format": "string"
  },
  "salary.salaryMin": {
    "label": "Minimum salary",
    "format": "number"
  },
  "salary.salaryMax": {
    "label": "Maximum salary",
    "format": "number"
  },
  "salary.salaryText": {
    "label": "Salary text",
    "format": "string"
  },
  "salary.salaryType": {
    "label": "Salary period",
    "format": "string"
  },
  "salary.salarySource": {
    "label": "Salary source",
    "format": "string"
  },
  "salary.salaryCurrency": {
    "label": "Currency",
    "format": "string"
  },
  "expired": {
    "label": "Expired",
    "format": "boolean"
  },
  "postedToday": {
    "label": "Posted today",
    "format": "boolean"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "scrapingInfo.page": {
    "label": "Page",
    "format": "number"
  },
  "scrapingInfo.index": {
    "label": "Index on page",
    "format": "number"
  },
  "scrapingInfo.inputUrl": {
    "label": "Input URL",
    "format": "string"
  },
  "jobKey": {
    "label": "Job key",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "socialInsurance": {
    "label": "Social insurance",
    "format": "array"
  },
  "shiftAndSchedule": {
    "label": "Shift and schedule",
    "format": "array"
  },
  "organicApplyStarts": {
    "label": "Applications started",
    "format": "number"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "string"
  },
  "requirements": {
    "label": "Requirements",
    "format": "array"
  },
  "jobLevel": {
    "label": "Job level",
    "format": "string"
  },
  "remoteWorkModel": {
    "label": "Remote work model",
    "format": "object"
  },
  "shifts": {
    "label": "Shift details",
    "format": "object"
  },
  "jobFunction": {
    "label": "Job function",
    "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).
