# Cutshort Jobs Scraper - Tech Jobs India (`technicaldost/cutshort-jobs-scraper`) Actor

Scrape Cutshort tech job listings by skill and city: company profile, salary range, experience range, skills, remote type and locations. New-jobs-only mode for scheduled runs.

- **URL**: https://apify.com/technicaldost/cutshort-jobs-scraper.md
- **Developed by:** [Technical Dost Solutions](https://apify.com/technicaldost) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 job listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Cutshort Jobs Scraper - Tech Jobs India

Scrape **Cutshort tech job listings** by skill and city: title, company profile (type, stage, size,
logo), **salary range and experience range as numbers**, skills, remote type, locations, full description
and link. Type skills in plain words ("React JS", "data science") and the Actor finds Cutshort's matching
skill page for you.

For tech recruiters and agencies, HR-tech and job-alert products, startup hiring research and salary
benchmarking in India's tech market.

### What you get

- **Plain-language skill search** matched to Cutshort's own skill pages (`React JS` → `reactjs`,
  `data science` → `datascience`, `machine learning` → `machine-learning-ml`); the run log shows each match
- **City pages** including combined areas (`Gurgaon` → Delhi NCR, `Bengaluru` → Bangalore)
- **Salary as numbers** from the range Cutshort shows (`₹15L - ₹30L / yr` → `1500000`–`3000000` INR / year).
  If an employer hides the salary ("Best in industry"), it stays hidden
- **Experience range, skills, remote type** (`onsite`, `hybrid` = remote OK, `remote`) and **company
  profile** (type, funding stage, size)
- **Full plain-text descriptions**
- **Monitor mode**: only new jobs on each scheduled run
- **No personal data**: the poster's name and photo are never collected

### Input

| Field | Description |
|---|---|
| `keywords` | Skills or roles, e.g. `python`, `React JS`, `product manager` |
| `cities` | Optional cities, e.g. `Bangalore`, `Pune`, `Gurgaon` |
| `remoteOnly` | Keep only remote / remote-OK jobs |
| `maxItems` | Total jobs to save (default 100) |
| `onlyNewJobs` / `monitorName` | Monitor mode |

```json
{
  "keywords": ["React JS", "data science"],
  "cities": ["Bangalore"],
  "onlyNewJobs": true
}
```

Each skill page, and each skill + city page, lists up to **50 current jobs**, which is Cutshort's own listing
size. Add cities or related skills to widen coverage.

### Output

Same columns as every Actor in this job-data family.

```json
{
  "source": "cutshort",
  "jobId": "6aaa821f3f7a18ba899be49a",
  "url": "https://cutshort.io/job/Java-Full-stack-Developer-Hyderabad-Bengaluru-Bangalore-VY-SYSTEMS-PRIVATE-LIMITED-lmc ...",
  "title": "Java Full stack Developer",
  "company": "MNC",
  "companyUrl": "https://cutshort.io/company/vy-systems-private-limited-16-e43Khktp",
  "location": "Hyderabad, Bengaluru (Bangalore)",
  "locations": [
    "Hyderabad",
    "Bengaluru (Bangalore)"
  ],
  "workArrangement": "onsite",
  "employmentType": "Full time",
  "experienceMinYears": 5,
  "experienceMaxYears": 12,
  "salaryMin": 200000,
  "salaryMax": 1500000,
  "salaryCurrency": "INR",
  "salaryPeriod": "year",
  "salaryText": "₹2L - ₹15L / yr",
  "skills": [
    "Java",
    "Spring Boot",
    "Microservices",
    "Angular (2+)"
  ],
  "categories": [],
  "description": "Job Description\nWe are looking for a Java Full Stack Developer with strong experience in backend development u ...",
  "searchQuery": "React JS",
  "searchLocation": "Bangalore",
  "isNew": null,
  "scrapedAt": "2026-09-18T11:43:35.873Z"
}
```

Cutshort does not show posting dates in its listings, so `postedAt` is empty. Monitor mode tracks jobs by
ID instead. A run summary is saved as `SUMMARY` in the key-value store.

### Pricing

**$1.00 per 1,000 jobs** ($0.001 each), charged only for jobs saved to your dataset. Duplicates, failed
requests and (in monitor mode) jobs you already received are **never charged**. There is no custom start fee; Apify's standard
$0.00005 actor-start event applies once per run.

### FAQ

**How does it find the right page?** It reads Cutshort's published listings sitemap once per run and picks
the closest skill page. If nothing matches, the run reports suggestions.

**Is this allowed?** The Actor reads only public listing pages and the sitemap that Cutshort publishes for
crawlers, which Cutshort's robots.txt allows. It never logs in, never opens application or profile pages,
and never collects personal data. Use the data in line with Cutshort's terms and applicable law.

### Related job-data Actors

- [Internshala Internships & Jobs Scraper](https://apify.com/technicaldost/internshala-internships-jobs-scraper)
- [Workday Jobs Scraper](https://apify.com/technicaldost/workday-jobs-scraper)
- [Remote Jobs Aggregator](https://apify.com/technicaldost/remote-jobs-aggregator)
- [Shine.com Jobs Scraper](https://apify.com/technicaldost/shine-jobs-scraper)
- [iimjobs Jobs Scraper](https://apify.com/technicaldost/iimjobs-jobs-scraper)

# Changelog

This Actor's version history is a separate document: https://apify.com/technicaldost/cutshort-jobs-scraper/changelog.md

# Actor input Schema

## `keywords` (type: `array`):

What to search, for example python, React JS, data science, product manager, devops. Each keyword is matched to Cutshort's closest skill page (the run log shows which one).

## `cities` (type: `array`):

Optional cities, for example Bangalore, Pune, Hyderabad, Gurgaon. Each keyword is searched in each city. Leave empty for all of India and remote.

## `remoteOnly` (type: `boolean`):

Keep only jobs marked remote or remote-OK.

## `maxItems` (type: `integer`):

Stop after this many jobs. Each skill page (and each skill + city page) lists up to 50 of Cutshort's current jobs. You pay only for jobs saved to the dataset.

## `onlyNewJobs` (type: `boolean`):

Return and charge only jobs this Actor has not returned to you before for the same search. Schedule it daily for a fresh tech-jobs feed.

## `monitorName` (type: `string`):

Optional name for the monitor-mode memory. Defaults to one list per unique search.

## Actor input object example

```json
{
  "keywords": [
    "python"
  ],
  "remoteOnly": false,
  "maxItems": 20,
  "onlyNewJobs": false
}
```

# Actor output Schema

## `jobs` (type: `string`):

No description

## `summary` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "python"
    ],
    "maxItems": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("technicaldost/cutshort-jobs-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keywords": ["python"],
    "maxItems": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("technicaldost/cutshort-jobs-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "python"
  ],
  "maxItems": 20
}' |
apify call technicaldost/cutshort-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,technicaldost/cutshort-jobs-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/K1QrFnAQhjK7Of0TH/builds/cJjELIyVwagF5ycUa/openapi.json
