# Nurse.com Jobs Scraper (`shahidirfan/nurse-com-jobs-scraper`) Actor

Unlock nursing job data from Nurse.com effortlessly. Collect job listings, titles, locations, salary ranges & requirements. Build job aggregators, power recruitment analytics, analyze healthcare staffing trends. Extract structured data at scale.

- **URL**: https://apify.com/shahidirfan/nurse-com-jobs-scraper.md
- **Developed by:** [Shahid Irfan](https://apify.com/shahidirfan) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Nurse.com Jobs Scraper

Extract Nurse.com job listings for recruiting research, market analysis, and nursing job monitoring. Collect structured records with compensation, organization, location, and normalized description fields. The actor supports reliable pagination and clean dataset output.

### Features

- **Nurse.com jobs extraction** - Collect active nursing job records.
- **Keyword and location filtering** - Focus results by specialty or geography.
- **Automatic pagination** - Fetch multiple pages until limits are reached.
- **Clean descriptions** - Returns both `description_html` and `description_text`.
- **Null-free output** - Empty values are removed from dataset items.

### Use Cases

#### Hiring Intelligence
Track demand by role, region, and employer to support recruiting strategy.

#### Compensation Monitoring
Analyze pay range trends across nursing specialties and locations.

#### Workforce Analytics
Build datasets for dashboards, forecasting, and operational reporting.

---

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `startUrl` | String | No | `https://www.nurse.com/jobs/browse/` | Start browse URL. |
| `keyword` | String | No | `icu` | Keyword or job title filter. |
| `location` | String | No | `New York` | City, state, or zip filter. |
| `results_wanted` | Integer | No | `20` | Maximum number of jobs to save. |
| `max_pages` | Integer | No | `20` | Maximum pages to request. |
| `proxyConfiguration` | Object | No | — | Optional proxy settings. |

---

### Output Data

| Field | Type | Description |
|-------|------|-------------|
| `id` | String | Unique job ID. |
| `slug` | String | Job slug. |
| `url` | String | Public Nurse.com job URL. |
| `title` | String | Job title. |
| `description_html` | String | Original HTML description. |
| `description_text` | String | Clean plain-text description. |
| `status` | String | Job status. |
| `employmentType` | String | Employment type. |
| `shiftType` | String | Shift type. |
| `minYearsExp` | Number | Minimum years of experience. |
| `hasExternalApplicationUrl` | Boolean | External application flag. |
| `displayCompanyName` | String | Display company name. |
| `payLow` | Number | Lower pay bound (cents). |
| `payHigh` | Number | Upper pay bound (cents). |
| `payType` | String | Pay period type. |
| `postedAt` | String | Posted timestamp (ISO). |
| `updatedAt` | String | Updated timestamp (ISO). |
| `createdAt` | String | Created timestamp (ISO). |
| `expiresAt` | String | Expiration timestamp (ISO). |
| `locationCity` | String | City. |
| `locationState` | String | State. |
| `organizationName` | String | Organization name. |
| `location` | Object | Nested location details. |
| `organization` | Object | Nested organization details. |
| `qualifications` | Array | Qualification entries. |
| `query` | Object | Query context used for the record. |
| `source` | String | Source site identifier. |
| `crawledAt` | String | Extraction timestamp (ISO). |

---

### Usage Examples

#### Basic Extraction

```json
{
  "startUrl": "https://www.nurse.com/jobs/browse/",
  "results_wanted": 20
}
````

#### Keyword and Location

```json
{
  "keyword": "icu",
  "location": "Texas",
  "results_wanted": 50,
  "max_pages": 5
}
```

#### URL-Driven Start

```json
{
  "startUrl": "https://www.nurse.com/jobs/browse/?q={\"searchText\":\"rn\"}",
  "results_wanted": 40,
  "max_pages": 4
}
```

***

### Sample Output

```json
{
  "id": "c307cfb1-faf2-4cbc-a6ea-de71cbd05c1a",
  "slug": "rn-clinical-nurse-ii-lactation-consultant-nicu-and-pediatric-cardiac-icu",
  "url": "https://www.nurse.com/jobs/rn-clinical-nurse-ii-lactation-consultant-nicu-and-pediatric-cardiac-icu/c307cfb1-faf2-4cbc-a6ea-de71cbd05c1a/",
  "title": "RN Clinical Nurse II Lactation Consultant NICU and Pediatric Cardiac ICU",
  "description_html": "<p>Provides competent clinical nursing care...</p>",
  "description_text": "Provides competent clinical nursing care...",
  "status": "ACTIVE",
  "employmentType": "FULL_TIME",
  "shiftType": "DAY",
  "payType": "ANNUAL",
  "locationCity": "Chapel Hill",
  "locationState": "NC",
  "organizationName": "UNC Health",
  "source": "nurse.com",
  "crawledAt": "2026-03-31T14:50:00.000Z"
}
```

***

### Tips for Best Results

#### Start with Small Runs

- Use `results_wanted: 20` for quick validation.

#### Increase Volume Gradually

- Raise `results_wanted` and `max_pages` together for larger collection.

#### Keep Filters Focused

- Combine `keyword` and `location` to improve relevancy.

***

### Integrations

- **Google Sheets** - Reporting and analysis
- **Airtable** - Searchable data tables
- **Slack** - Alerts and notifications
- **Webhooks** - Pipeline ingestion
- **Make** - Workflow automation
- **Zapier** - No-code integrations

#### Export Formats

- **JSON** - API and code workflows
- **CSV** - Spreadsheet analysis
- **Excel** - Business reporting
- **XML** - System integrations

***

### Frequently Asked Questions

#### Does this actor support pagination?

Yes. It requests multiple pages until `results_wanted` or `max_pages` is reached.

#### Can I filter by keyword and location?

Yes. Use `keyword` and `location` together for targeted results.

#### Why do some records have fewer fields?

Some listings do not provide all attributes. Empty values are removed automatically.

#### What is the difference between `description_html` and `description_text`?

`description_html` is the original markup, while `description_text` is clean readable text.

#### Can I start from a custom browse URL?

Yes. Set `startUrl` to any supported Nurse.com browse URL.

***

### Support

For issues or feature requests, use support channels in the Apify Console.

#### Resources

- [Apify Documentation](https://docs.apify.com/)
- [Apify API Reference](https://docs.apify.com/api/v2)
- [Apify Schedules](https://docs.apify.com/platform/schedules)

***

### Legal Notice

This actor is intended for lawful data collection. You are responsible for complying with website terms, privacy requirements, and applicable regulations.

# Actor input Schema

## `startUrl` (type: `string`):

Nurse.com browse URL, for example https://www.nurse.com/jobs/browse/.

## `keyword` (type: `string`):

Search keyword, specialty, or job title.

## `location` (type: `string`):

City, state, or zip code.

## `results_wanted` (type: `integer`):

Maximum number of jobs to save.

## `max_pages` (type: `integer`):

Safety cap for API pages to request.

## `proxyConfiguration` (type: `object`):

Optional proxy settings for reliable requests.

## Actor input object example

```json
{
  "startUrl": "https://www.nurse.com/jobs/browse/",
  "keyword": "icu",
  "location": "New York",
  "results_wanted": 20,
  "max_pages": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "startUrl": "https://www.nurse.com/jobs/browse/",
    "keyword": "icu",
    "location": "New York",
    "results_wanted": 20,
    "max_pages": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("shahidirfan/nurse-com-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 = {
    "startUrl": "https://www.nurse.com/jobs/browse/",
    "keyword": "icu",
    "location": "New York",
    "results_wanted": 20,
    "max_pages": 20,
}

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

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

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

```

## CLI example

```bash
echo '{
  "startUrl": "https://www.nurse.com/jobs/browse/",
  "keyword": "icu",
  "location": "New York",
  "results_wanted": 20,
  "max_pages": 20
}' |
apify call shahidirfan/nurse-com-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=shahidirfan/nurse-com-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Nurse.com Jobs Scraper",
        "description": "Unlock nursing job data from Nurse.com effortlessly. Collect job listings, titles, locations, salary ranges & requirements. Build job aggregators, power recruitment analytics, analyze healthcare staffing trends. Extract structured data at scale.",
        "version": "1.0",
        "x-build-id": "muyOi2GosuBM7Nhzg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/shahidirfan~nurse-com-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-shahidirfan-nurse-com-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/shahidirfan~nurse-com-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-shahidirfan-nurse-com-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/shahidirfan~nurse-com-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-shahidirfan-nurse-com-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrl": {
                        "title": "Start URL",
                        "type": "string",
                        "description": "Nurse.com browse URL, for example https://www.nurse.com/jobs/browse/."
                    },
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Search keyword, specialty, or job title."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, state, or zip code."
                    },
                    "results_wanted": {
                        "title": "Maximum number of jobs",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of jobs to save.",
                        "default": 20
                    },
                    "max_pages": {
                        "title": "Maximum number of pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Safety cap for API pages to request.",
                        "default": 20
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional proxy settings for reliable requests.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
