# ⏰ Part-time jobs within a radius

**Use case:** 

Collects part-time openings within a radius of one city, with the pay, the shift and the schedule on every row.

That combination is what makes part-time listings comparable: hourly rate, hours per week and which evenings or weekends the job covers, side by side across every employer hiring nearby.

Set `radius` to 0 for that exact location only.

## Input

```json
{
  "country": "us",
  "query": "retail associate",
  "location": "Chicago, IL",
  "maxRows": 100,
  "radius": "25",
  "remote": "remote",
  "level": "entry_level",
  "sort": "date",
  "jobType": "parttime",
  "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.formattedAddressShort": {
    "label": "Short address",
    "format": "string"
  },
  "location.countryCode": {
    "label": "Country code",
    "format": "string"
  },
  "salary.salaryText": {
    "label": "Salary text",
    "format": "string"
  },
  "salary.salaryMin": {
    "label": "Minimum salary",
    "format": "number"
  },
  "salary.salaryMax": {
    "label": "Maximum salary",
    "format": "number"
  },
  "salary.salaryCurrency": {
    "label": "Currency",
    "format": "string"
  },
  "salary.salaryType": {
    "label": "Salary period",
    "format": "string"
  },
  "salary.salarySource": {
    "label": "Salary source",
    "format": "string"
  },
  "salary.matchingSalary": {
    "label": "Matches salary filter",
    "format": "boolean"
  },
  "benefits": {
    "label": "Benefits",
    "format": "array"
  },
  "socialInsurance": {
    "label": "Social insurance",
    "format": "array"
  },
  "jobType": {
    "label": "Job type",
    "format": "array"
  },
  "workingSystem": {
    "label": "Working system",
    "format": "array"
  },
  "shiftAndSchedule": {
    "label": "Shift and schedule",
    "format": "array"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "datePublished": {
    "label": "Date published",
    "format": "string"
  },
  "jobKey": {
    "label": "Job key",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  },
  "jobLevel": {
    "label": "Job level",
    "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).
