BinInfo 3.0.0
dotnet add package BinInfo --version 3.0.0
NuGet\Install-Package BinInfo -Version 3.0.0
<PackageReference Include="BinInfo" Version="3.0.0" />
paket add BinInfo --version 3.0.0
#r "nuget: BinInfo, 3.0.0"
// Install BinInfo as a Cake Addin #addin nuget:?package=BinInfo&version=3.0.0 // Install BinInfo as a Cake Tool #tool nuget:?package=BinInfo&version=3.0.0
BinInfo
BinInfo is an API wrapper that retrieves information about Credit Card Issuers through binlist.net public REST API.
NuGet Package → https://www.nuget.org/packages/BinInfo
About binlist.net
binlist.net is a public web service for searching Issuer Identification Numbers (IIN).
The first 6 digits of a credit card number are known as the Issuer Identification Number (IIN), previously known as Bank Identification Number (BIN). These identify the institution that issued the card to the card holder.
This webservice has an internal database with IIN/BIN information, which is queried via the Rest API. There's no magic or tricky calculations, it's just a database. And although the database is very accurate, don't expect it to be perfect.
Usage
IssuerInformation info = BinList.Find("431940"); // First 6 digits of a credit card number.
// OR
IssuerInformation info = await BinList.FindAsync("431940");
info.Brand; // => "VISA"
info.Country.Alpha2; // => "IE"
info.Country.Name; // => "Ireland"
info.Bank.Name; // => "BANK OF IRELAND"
info.CardType; // => "DEBIT"
info.Country.Latitude; // => "53"
info.Country.Longitude; // => "-8"
info.Brand; // => "Traditional"
info.Prepaid; // => false
Limits
Requests are throttled at 10 per minute with a burst allowance of 10. If you hit the speed limit the service will return a 429 http status code. (More info: https://binlist.net/)
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
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Removed support for old .NET 4 and 4.5 Frameworks.