Skip to content

HTTP client for the NPI Registry Public records api.

License

Notifications You must be signed in to change notification settings

zerai/npi-registry-sdk

 
 

Repository files navigation

NPI Registry SDK

HTTP client for the National Provider Identifier Registry Public records api.

Version License CI Total Downloads Latest Unstable Version composer.lock

Requirements

  • PHP ^7.4
  • PHP ext-json

Installation

The preferred method of installation is to use composer:

$ composer require medicalmundi/npi-registry-php-sdk

Usage

You create a Npi registry SDK like so:

use MedicalMundi\NpiRegistry\SDK\NpiRegistry;

$npiRegistry = NpiRegistry::connect();

Searching providers

You create a Npi registry service, use a search resource like so:

use MedicalMundi\NpiRegistry\SDK\NpiRegistry;

$npiRegistry = NpiRegistry::connect();
$npiRegistry->search
            ->where('version', '2.1') // api version is mandatory
            ->where('city', 'atlanta')
            ->fetch();

⚠ Launching early stage releases (0.x.x) could break the API according to Semantic Versioning 2.0. We are using minor for breaking changes. This will change with the release of the stable 1.0.0 version.

About

HTTP client for the NPI Registry Public records api.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • PHP 100.0%