# WorkIndia Listing URL Jobs Extractor

**Use case:** 

Extract jobs from exact WorkIndia listing URLs and export salary, company, locality, category, and source links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.workindia.in/jobs-in-bengaluru/"
    },
    {
      "url": "https://www.workindia.in/telecalling-jobs-in-mumbai/"
    }
  ],
  "citySlugs": [
    "bengaluru",
    "mumbai",
    "delhi"
  ],
  "categorySlugs": [
    "delivery",
    "telecalling"
  ],
  "maxItems": 40,
  "includeDetails": false,
  "requestDelayMs": 250
}
```

## Output

```json
{
  "jobTitle": {
    "label": "Job title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "experience": {
    "label": "Experience",
    "format": "text"
  },
  "qualification": {
    "label": "Qualification",
    "format": "text"
  },
  "postedText": {
    "label": "Posted",
    "format": "text"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [WorkIndia Jobs Scraper](https://apify.com/automation-lab/workindia-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/workindia-jobs-scraper) to learn more, explore other use cases, and run it yourself.