Skip to content

MaxHorstmann/ArinWhois.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages