Addy.Address.Service.Standard
1.4.1
dotnet add package Addy.Address.Service.Standard --version 1.4.1
NuGet\Install-Package Addy.Address.Service.Standard -Version 1.4.1
<PackageReference Include="Addy.Address.Service.Standard" Version="1.4.1" />
paket add Addy.Address.Service.Standard --version 1.4.1
#r "nuget: Addy.Address.Service.Standard, 1.4.1"
// Install Addy.Address.Service.Standard as a Cake Addin #addin nuget:?package=Addy.Address.Service.Standard&version=1.4.1 // Install Addy.Address.Service.Standard as a Cake Tool #tool nuget:?package=Addy.Address.Service.Standard&version=1.4.1
Address Validation API for New Zealand Places
Official Site: https://www.addy.co.nz/
Source Code: https://github.com/addynz/Address-Validation-Cleansing-NZ-DotNet-Standard
Make it easy for users to find and validate their address in your .NET Core, C# or VB.NET application.
Address Search API
Call the Address Search API to find and validate addresses using fuzzy matching to eliminate typos and spelling mistakes.
https://www.addy.co.nz/address-validation-nz-website https://www.addy.co.nz/address-finder-and-postcode-api
Address Details API
Call the Address Details API to retrieve address information, such as New Zealand Post’s Delivery Point Identifier (DPID), LINZ’s Street Address ID or longitude / latitude (x / y) coordinates, street names, city names, suburbs, postal codes, territories, regions and more.
https://www.addy.co.nz/address-details-api
Address Validation API
Addy's address validation API, also know as the address cleansing API or address correction API, will verify, cleanse, standardize and format addresses to deliver complete, accurate and enhanced data.
https://www.addy.co.nz/faq/address-cleansing-software https://www.addy.co.nz/address-validation-api
Install NuGet Package
To get started, install the Addy.Address.Service.Standard NuGet package or fork this repository.
The code sample will automatically convert JSON address search responses into DTO/POCO objects.
Sample Code in .NET (C#)
Call the Address Validation API to cleanse and validate NZ addresses:
const string apiKey = "your-api-key";
IRequestFactory requestFactory = new RequestFactory(apiKey);
using (IAddressValidationService validationService = new AddressValidationService(requestFactory))
{
Console.WriteLine("Type an address to validate/cleanse:");
var criteria = Console.ReadLine();
if (string.IsNullOrWhiteSpace(criteria)) return;
var result = await validationService.AddressValidateAsync(criteria);
if (result.address == null)
{
Console.WriteLine("No match found. " + result.reason);
}
else
{
Console.WriteLine("Full Address: {0}", result.address.full);
}
}
Links
Official Addy site: https://www.addy.co.nz/
Address Search API Documentation: https://www.addy.co.nz/address-finder-and-postcode-api
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.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 | 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. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.