SkillAgentSearch skills...

ArinWhois.NET

.NET client for ARIN's Whois RESTful Web Service, the API to accessing ARIN's Whois data

Install / Use

/learn @MaxHorstmann/ArinWhois.NET
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ARIN-Whois.NET

.NET client for ARIN's Whois RESTful Web Service, the API to accessing ARIN's Whois data.

The American Registry for Internet Numbers (ARIN) is the Regional Internet Registry (RIR) for North America. Their API is a directory service to access data in their registration database, such as networks, organizations, and point of contacts.

This is a simple .NET client to access the RESTful API programmatically with a set of statically typed helper classes.

Install

Use the NuGet package, run the following command in the Package Manager Console:

PM> Install-Package ArinWhois

Sample Usage

var arinClient = new ArinClient();

// Check single IP
var ipResponse = await arinClient.QueryIpAsync(IPAddress.Parse("69.63.176.0"));

Console.WriteLine(ipResponse.Network.Name);
Console.WriteLine(ipResponse.Network.NetBlocks.NetBlock.Cidr);

// Find out more about organization
var orgResponse = await arinClient.QueryResourceAsync(ipResponse.Network.OrgRef.Handle, 
							ArinClient.ResourceType.Organization);
Console.WriteLine(orgResponse.Organization.Name);
Console.WriteLine(orgResponse.Organization.City);

If you don't wanna do async, use .Result:

var response = arinClient.QueryIpAsync(IPAddress.Parse("69.63.176.0")).Result;

But you should do async, really.

Limitations

  • Read-only

Contributors

Related Skills

View on GitHub
GitHub Stars33
CategoryDevelopment
Updated2mo ago
Forks17

Languages

C#

Security Score

90/100

Audited on Jan 9, 2026

No findings