Build Status Crate Docs

rust-abuseipdb

Rust client for the AbuseIPDB API
Documentation hosted on docs.rs.

toml abuseipdb = "0.2.1"

Example usage

```rust use abuseipdb::Client; use std::net::Ipv4Addr;

async fn example() { let myip = Ipv4Addr::new(127, 0, 0, 1).into(); let client = Client::new(""); let response = client.check(myip, None, false).await.unwrap(); println!("abuseConfidenceScore: {}", response.data.abuseconfidencescore); } ```