# Specialized Job Boards Nursing Jobs Scraper

**Use case:** 

Scrape nursing job listings across specialized job boards with title, company, location, and apply URL. Export structured job data to JSON or CSV.

## Input

```json
{
  "keyword": "nurse",
  "maxItems": 50
}
```

## Output

```json
{
  "companyLogo": {
    "label": "Company Logo",
    "format": "image"
  },
  "originalId": {
    "label": "Original ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "locationType": {
    "label": "Location Type",
    "format": "text"
  },
  "jobType": {
    "label": "Job Type",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary Min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary Max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Salary Currency",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "datePosted": {
    "label": "Date Posted",
    "format": "date"
  },
  "datePostedTimestamp": {
    "label": "Date Posted Timestamp",
    "format": "date"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [RemoteOK Scraper](https://apify.com/parseforge/specialized-job-boards-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/specialized-job-boards-scraper) to learn more, explore other use cases, and run it yourself.