# 🏡 Remote jobs

**Use case:** 

Extracts the listings Indeed itself flags as remote, so you get roles that are genuinely remote rather than ones that merely mention the word.

Each row carries the salary range, the employer, the posting date and a direct apply URL — enough to build a niche remote job board, or to track how remote hiring moves in your field.

Switch `remote` to `hybrid` for hybrid roles.

## Input

```json
{
  "country": "us",
  "query": "customer success manager",
  "location": "Remote",
  "maxRows": 100,
  "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.country": {
    "label": "Country",
    "format": "string"
  },
  "location.countryCode": {
    "label": "Country code",
    "format": "string"
  },
  "location.city": {
    "label": "City",
    "format": "string"
  },
  "location.postalCode": {
    "label": "Postal code",
    "format": "string"
  },
  "location.streetAddress": {
    "label": "Street address",
    "format": "string"
  },
  "location.formattedAddressShort": {
    "label": "Short address",
    "format": "string"
  },
  "location.formattedAddressLong": {
    "label": "Long address",
    "format": "string"
  },
  "location.fullAddress": {
    "label": "Full address",
    "format": "string"
  },
  "location.latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "location.longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "remoteLocation": {
    "label": "Remote location",
    "format": "boolean"
  },
  "workingSystem": {
    "label": "Working system",
    "format": "array"
  },
  "locale": {
    "label": "Locale",
    "format": "string"
  },
  "jobKey": {
    "label": "Job key",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  },
  "remoteWorkModel": {
    "label": "Remote work model",
    "format": "object"
  }
}
```

## 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).
