This is the Rust client library for the IPinfo.io IP address API. It allows you to lookup your own IP address, or get any of the following details for an IP:
Check all the data we have for your IP address here.
To use IPinfo, add the followinig to your Cargo.toml
file.
toml
[dependencies]
ipinfo = "0.1"
An access token is required, which can be acquired by signing 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 the IP type and company information. To get the complete list of information on an IP address and make more requests per day see https://ipinfo.io/pricing.
```rust use ipinfo::{IpInfo, IpInfoConfig};
fn main() { let config = IpInfoConfig { token: Some("my token".to_string()), ..Default::default() }; let mut ipinfo = IpInfo::new(config).expect("should construct"); let res = ipinfo.lookup(&["8.8.8.8", "4.2.2.4"]);
match res { Ok(r) => println!("{}: {}", "8.8.8.8", r["8.8.8.8"].hostname), Err(e) => println!("error occurred: {}", &e.to_string()), } } ```
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.
Thought of something you'd like to see? You can visit the issue tracker to check if it was reported or proposed before, and if not please feel free to create an issue or feature request. Ready to start contributing? The contributing guide is a good place to start. If you have questions please feel free to ask.
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, Reverse IP, hosted domains, and IP type data sets. Our API handles over 20 billion requests a month for 100,000 businesses and developers.