Healthcare Providers
Search and look up healthcare providers in the BlueHive network. Find clinics by location, services offered, and availability.
1 endpoint
Guide
Search the national NPI registry for healthcare providers. Use these endpoints to look up providers by name, NPI number, or location proximity. This is useful for verifying provider credentials and finding nearby clinics.
Provider Search
Search for providers using any combination of NPI, name, and zip code. The zip code filter returns providers sorted by distance from the specified location.
Search providers
Find providers near a zip code
# Search by name near a zip code
curl "https://api.bluehive.com/v1/providers/lookup?lastname=Smith&zipcode=48201" \
-H "Authorization: ApiKey YOUR_API_KEY"
# Look up by NPI number
curl "https://api.bluehive.com/v1/providers/lookup?npi=1234567890" \
-H "Authorization: ApiKey YOUR_API_KEY"
# Response includes distance from zip code:
# {
# "providers": [
# {
# "firstname": "John",
# "lastname": "Smith",
# "npi": "1234567890",
# "address_1": "100 Medical Center Dr",
# "city": "Detroit",
# "state_province": "MI",
# "postal_code": "48201",
# "work_phone": "3135551000",
# "distance": 2.3
# }
# ],
# "count": 1
# }