# 🇮🇳 Jobs in India (in.indeed.com)

**Use case:** 

Collects Indian job listings from in.indeed.com with pay in rupees, the hiring company's details and the apply URL.

Set here on IT hiring in Bengaluru because that is where the volume is, but the same configuration works for any city and any function — change `query` and `location` and nothing else.

Use "Remote" as the location to cover remote-first Indian employers.

## Input

```json
{
  "country": "in",
  "query": "Java Developer",
  "location": "Bengaluru, Karnataka",
  "maxRows": 200,
  "remote": "remote",
  "level": "entry_level",
  "sort": "date",
  "jobType": "fulltime",
  "fromDays": "7",
  "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"
  },
  "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).
