Forcura.NPPESAPI 2.1.1

dotnet add package Forcura.NPPESAPI --version 2.1.1
NuGet\Install-Package Forcura.NPPESAPI -Version 2.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Forcura.NPPESAPI" Version="2.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Forcura.NPPESAPI --version 2.1.1
#r "nuget: Forcura.NPPESAPI, 2.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Forcura.NPPESAPI as a Cake Addin
#addin nuget:?package=Forcura.NPPESAPI&version=2.1.1

// Install Forcura.NPPESAPI as a Cake Tool
#tool nuget:?package=Forcura.NPPESAPI&version=2.1.1

NPPES API for .NET

NuGet

This is a .NET wrapper for interacting with the CMS National Plan and Provider Enumeration System NPPES National Provider Identifier (NPI) lookup system

For more information visit the NPI registry

Usage

Requests are as simple as providing an NPI number to lookup:

var results = await NPPESApiClient.SearchAsync("8942315671");

OR

var results = await NPPESApiClient.SearchAsync(new NPPESRequest
{
   Number = "5631047582"
});

For more complicated queries, use the other provided fields on the NPPESRequest object:

var results = await NPPESApiClient.SearchAsync(new NPPESRequest
{
   FirstName = "John",
   LastName = "Doe"
});

Using the builder:

var builder = new NPPESRequestBuilder();
var request = builder
    .Version(NPPESVersion.v1_0)
    .Number("1234567890")
    .Build();

var results = await NPPESApiClient.SearchAsync(request);

Dependency Injection

For netcore/net5+ you can register this with the IServiceCollection through the extension method:

using Forcura.NPPES.DependencyInjection;

// simple approach
IServiceCollection serviceCollection = ...;
serviceCollection.AddNPPESApi();

// for any customizations of the IHttpClientBuilder
IServiceCollection serviceCollection = ...;
serviceCollection.AddHttpClient<NPPESApiClient>();

It is important to note that the NPPES API by default, accesses the latest public api version, as currently it is backward compatible, this is something to be aware of.

License

Copyright 2022 Forcura

Licensed under the Apache 2.0 license

Resources

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.5 is compatible.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.1 16,307 8/22/2022
2.1.0 531 8/1/2022
2.0.0 1,412 12/3/2021
1.1.2 396 6/3/2021
1.1.1 18,131 4/12/2019
1.0.0 841 9/28/2018

Update to support the following Rest API breaking changes:
     * `result_count` was renamed to `resultCount`
     * Timestamps are now milliseconds from the epoch instead of seconds from the epoch

     Other changes:
     * Using version 1.0 and 2.0 requests will provide a deprecation warning