# Jobindex search URL job extractor

**Use case:** 

Extract jobs from a Jobindex.dk search URL with title, company, location, deadline, apply link, and description fields.

## Input

```json
{
  "query": "python",
  "location": "København",
  "startUrls": [
    {
      "url": "https://www.jobindex.dk/jobsoegning?q=data"
    }
  ],
  "maxItems": 100,
  "includeDetails": false,
  "maxPages": 10
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "companyName": {
    "label": "Company"
  },
  "location": {
    "label": "Location"
  },
  "salaryText": {
    "label": "Salary"
  },
  "employmentType": {
    "label": "Employment"
  },
  "postedAt": {
    "label": "Posted"
  },
  "deadline": {
    "label": "Deadline"
  },
  "descriptionText": {
    "label": "Description"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "jobId": {
    "label": "Job ID"
  },
  "sourceQuery": {
    "label": "Source query"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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