Overview
The NPPES NPI Registry API lets you look up US healthcare providers by their National Provider Identifier (NPI) number or by name and specialty. It is completely free with no authentication required and returns detailed provider information including address, taxonomy, and contact details. This is useful for building healthcare directories or verifying provider credentials.
Beginner Tip
Search by a provider's last name and state using the number and enumeration_type parameters to narrow results — the API can return up to 200 records per request.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://npiregistry.cms.hhs.gov/api/?number=1234567890&version=2.1
- Result
- HTTP 200 · application/json · 31 bytes
- Response time
- 206 ms (median of 3) · fastest 198 ms
- Transport
- TLSv1.3 · TLS_AES_128_GCM_SHA256 · certificate issued by Amazon
- Browser CORS
- No Access-Control-Allow-Origin header — call it from a server, not the browser
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| result_count | integer | 0 |
| results | array | [0 items] |
Captured Response
Captured from a real request to https://npiregistry.cms.hhs.gov/api/?number=1234567890&version=2.1 on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"result_count": 0,
"results": []
} Field Reference
result_count Total number of providers matching the search criteria. results Array of matching provider records. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://npiregistry.cms.hhs.gov/api/?number=1234567890&version=2.1";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Coronavirus
This Coronavirus API provides the latest global Covid-19 case counts, deaths, and recoveries aggregated from public health sources.
Coronavirus in the UK
The Coronavirus in the UK API provides official UK Government data on Covid-19 cases, deaths, and vaccinations broken down by region and nation.
Covid Tracking Project
⭐ Beginner's PickThe Covid Tracking Project API provides historical US Covid-19 data including tests, hospitalizations, and deaths at the state and national level.
Covid-19
⭐ Beginner's PickThe Covid-19 API by M-Media Group provides daily case counts, deaths, and recoveries for every country in the world.
Infermedica
Infermedica is an AI-powered health API that analyzes symptom descriptions in plain text and suggests possible conditions or next steps.