# Verify Nurse and Healthcare Provider Licences in Bulk

**Use case:** 

Check a credentialing roster in one run: Colorado nursing licences by licence number, and any US provider by NPI, nationwide. Every row carries the registry status, the expiry date, days remaining and a match confidence, so a licence number that now belongs to somebody else is visible rather than silently accepted. For credentialing teams, staffing agencies and payers.

## Input

```json
{
  "roster": [
    "CO | 1705817 | Katie Pratt",
    "CO | 1619768 | Denise Shore",
    "CO | 1630945 | Ashley Cook",
    "CO | 204604 | Kimberly Toke",
    "US | 1609528348",
    "US | 1023511326",
    "US | 1689205718"
  ],
  "registries": [
    "co-professional",
    "npi"
  ],
  "searchBy": "auto",
  "expiringWithinDays": 60,
  "alertsOnly": false,
  "onlyChangesSinceLastRun": false,
  "trackChanges": true,
  "watchlistName": "credentialing",
  "maxRosterEntries": 500
}
```

## Output

```json
{
  "rosterInput": {
    "label": "Roster line"
  },
  "verification": {
    "label": "Verification"
  },
  "matchedName": {
    "label": "Licensee"
  },
  "matchedLicenseNumber": {
    "label": "License number"
  },
  "licenseType": {
    "label": "License type"
  },
  "licenseStatus": {
    "label": "Status"
  },
  "expirationDate": {
    "label": "Expires"
  },
  "daysToExpiry": {
    "label": "Days left"
  },
  "alerts": {
    "label": "Alerts"
  },
  "_change": {
    "label": "Change"
  },
  "registryState": {
    "label": "State"
  },
  "registry": {
    "label": "Registry"
  },
  "matchConfidence": {
    "label": "Match confidence"
  },
  "verifyUrl": {
    "label": "Verify at"
  }
}
```

## About this Actor

This example demonstrates how to use [License Verification & Expiry Monitor: Bulk US License Lookup](https://apify.com/fayoussef/license-roster-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/license-roster-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/license-roster-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
