# Search Live Job Listings by Technology or Title

**Use case:** 

Find current job openings by keyword ("react", "python developer") and export company, location, salary, remote flag and apply URL to JSON, CSV or Excel.

## Input

```json
{
  "search": "react developer",
  "country": "us",
  "datePosted": "all",
  "remoteOnly": false,
  "employmentTypes": [],
  "limit": 25
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "salaryMin": {
    "label": "Salary Min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary Max",
    "format": "number"
  },
  "published": {
    "label": "Posted",
    "format": "text"
  },
  "applicationUrl": {
    "label": "Apply",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Jobs Search Scraper – Find Live Listings by Title & Technology](https://apify.com/endspec/jobs-instant-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/jobs-instant-search-scraper) to learn more, explore other use cases, and run it yourself.