IpInfo 1.1.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package IpInfo --version 1.1.13
NuGet\Install-Package IpInfo -Version 1.1.13
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="IpInfo" Version="1.1.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IpInfo --version 1.1.13
#r "nuget: IpInfo, 1.1.13"
#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 IpInfo as a Cake Addin
#addin nuget:?package=IpInfo&version=1.1.13

// Install IpInfo as a Cake Tool
#tool nuget:?package=IpInfo&version=1.1.13

<img src="https://ipinfo.io/static/ipinfo-small.svg" alt="IPinfo" width="24"/> IPinfo C# Client Library

Language License Requirements Requirements Build Status

This is the official C# client library for the IPinfo.io IP address API, allowing you to lookup your own IP address, or get any of the following details for an IP:

  • IP geolocation / geoIP data (city, region, country, postal code, latitude and longitude)
  • ASN details (ISP or network operator, associated domain name, and type, such as business, hosting or company)
  • Firmographics data (the name and domain of the business that uses the IP address)
  • Carrier information (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)

Getting Started

You'll need an IPinfo API access token, which you can get by singing up for a free account at https://ipinfo.io/signup.

The free plan is limited to 50,000 requests per month, and doesn't include some of the data fields such as IP type and company data. To enable all the data fields and additional request volumes see https://ipinfo.io/pricing

Nuget

NuGet

Install-Package IpInfo

Usage

using IpInfo;

using var client = new HttpClient();
var api = new IpInfoApi("your-token", client); // Some methods work without a token, for this case there is a constructor without a token.

var response = await api.GetCurrentInformationAsync();

Console.WriteLine($"City: {response.City}");

Batch API

// WARNING: Token required.
var dictionary = await api.GetInformationByIpsAsync(new[]
{
    "8.8.8.8",
    "8.8.4.4",
}, cancellationToken);

foreach (var pair in dictionary)
{
    Console.WriteLine($"{pair.Key} City: {pair.Value.City}");
}

// 8.8.4.4 City: Amstelveen
// 8.8.8.8 City: Mountain View


// WARNING: Token required.
var dictionary = await api.BatchAsync(new []
{
    "8.8.4.4/city",
    "8.8.8.8/city",
}, cancellationToken);

foreach (var pair in dictionary)
{
    Console.WriteLine($"{pair.Key}: {pair.Value}");
}

// 8.8.4.4: Amstelveen
// 8.8.8.8: Mountain View

Privacy Detection API

// WARNING: Token required. The token must have at least permissions of the Business Plan. Otherwise, you'll get a response with an HTTP 403 status code. 
var privacy = await api.GetPrivacyInformationByIpAsync("8.8.8.8", cancellationToken);

Console.WriteLine($"Vpn: {privacy.Vpn}");
Console.WriteLine($"Proxy: {privacy.Proxy}");
Console.WriteLine($"Tor: {privacy.Tor}");
Console.WriteLine($"Hosting: {privacy.Hosting}");

// Vpn: False
// Proxy: False
// Tor: False
// Hosting: False

Live Example

C# .NET Fiddle - https://dotnetfiddle.net/i5MmNp
VB.NET .NET Fiddle - https://dotnetfiddle.net/EUszSY

Contacts

Other Libraries

There are official IPinfo client libraries available for many languages including PHP, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.

About IPinfo

Founded in 2013, IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere. We process terabytes of data to produce our custom IP geolocation, company, carrier, VPN detection, hosted domains, and IP type data sets. Our API handles over 40 billion requests a month for 100,000 businesses and developers.

image

Product 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 net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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. 
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 (2)

Showing the top 2 popular GitHub repositories that depend on IpInfo:

Repository Stars
codesiddhant/Jasmin-Ransomware
Jasmin Ransomware is an advanced red team tool (WannaCry Clone) used for simulating real ransomware attacks. Jasmin helps security researchers to overcome the risk of external attacks.
mysteryx93/HanumanInstituteApps
432Hz Player, 432Hz Batch Converter, Powerliminals Player, Yang YouTube Downloader
Version Downloads Last updated
3.0.0 19,552 12/7/2023
2.1.0 106,718 1/25/2023
2.0.2 41,514 9/1/2022
2.0.1 7,063 7/15/2022
2.0.0 2,995 6/9/2022
1.1.14 23,880 12/20/2021
1.1.13 14,492 11/10/2021
1.1.12 626 11/5/2021
1.1.11 1,136 10/27/2021
1.1.9 5,774 7/6/2021
1.1.8 690 7/6/2021
1.1.4 652 7/6/2021
1.1.3 612 7/6/2021
1.1.1 697 7/6/2021
1.0.5.4 765 7/5/2021
1.0.5.3 638 7/5/2021
1.0.5.2 5,299 3/25/2021
1.0.5.1 5,849 9/5/2020
1.0.5 1,060 8/30/2020
1.0.4.2 860 8/30/2020
1.0.4.1 885 8/30/2020
1.0.4 863 8/30/2020
1.0.3 870 8/30/2020
1.0.2 893 8/30/2020
1.0.1 810 8/10/2020
1.0.0 865 8/9/2020
1.0.0-beta.4 269 8/9/2020
1.0.0-beta.3 293 8/9/2020
1.0.0-beta.2 318 8/9/2020
1.0.0-beta.1 552 8/9/2020

⭐ Last 10 features:
- feat: Added optional PrivacyResponse.Service value. 2021-11-10
- feat: add-relay-field 2021-11-05
- feat: Added README to NuGet package. 2021-10-27
- feat: To net6 and C# 10. 2021-10-27
- feat: Added symbols. 2021-07-07
- feat: Added AsnResponse.type 'inactive' value. 2021-07-07
- feat: city and country is not required more. Added bogon property. 2021-07-07
- feat: Updated to use H.NSwag.Generator instead manual generation. 2021-07-07
- feat: Updated NuGet packages. 2021-07-06
- feat: Changed generateOptionalParameters to true. 2021-07-06
🐞 Last 10 bug fixes:
- fix: Fixed GetInformationByIpsAsync nullable warning. 2021-07-06
- fix: Added null checks for ctor. 2021-07-06
- fix: Fixed missing ConfigureAwait(false) in GetInformationByIpsAsync. 2021-07-06
- fix: Removed timezone and loc from required properties. 2021-07-06
- fix: Removed timezone and loc from required properties. 2021-07-06
- fix: Fixed #10. 2021-07-06
- fix: Fixed #10. 2021-07-06
- fix: Commented Run tests in dotnet.yml(Test token is not valid). 2021-03-26
- fix: Fixed dotnet.yml. 2021-03-26
- fix: Released 1.0.5.2. 2021-03-26