# AutoScrape NPI Registry Lookup

> AutoScrape NPI Registry Lookup is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up healthcare providers by NPI number, name, or organization from the CMS NPPES NPI Registry

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/npi-registry
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-npi-registry-lookup-a9358bc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P2-9vuJwV2jNVyNS3jxK7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability autoscrape-npi-registry-lookup-a9358bc7
```

Example prompt: Can you look up the NPI number and active status for Mayo Clinic in the CMS NPPES registry?

## When to prefer this

Use this endpoint when you need to validate or look up U.S. healthcare provider information from the official CMS NPPES NPI Registry, including verifying NPI numbers, checking provider active status, or searching by name and location. Prefer this over general web searches when you need structured, authoritative provider data for credentialing, billing verification, or compliance workflows.

## Known failure modes

- No results found if NPI or name does not match any registered provider
- Requests exceeding 10 results are capped at 10 records per call
- Missing required query parameters (no NPI, name, or organization provided) may return an empty result or error
- Invalid NPI format (not 10 digits) will fail to match
- Upstream CMS NPPES API downtime may cause delayed or empty responses

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a result count, a list of matching provider records (each including NPI number, active status, organization name, and source system label), and a setup status field indicating whether results were found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "npi": "1881018208",
    "status": "A",
    "sourceSystem": "CMS National Plan and Provider Enumeration System (NPPES) NPI Registry API",
    "organizationName": "MAYO CLINIC"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-npi-registry-lookup-a9358bc7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
