| Crates.io | serpnode |
| lib.rs | serpnode |
| version | 0.1.1 |
| created_at | 2025-10-02 08:52:23.941768+00 |
| updated_at | 2025-10-02 09:10:42.730681+00 |
| description | Serpnode API client for Rust |
| homepage | |
| repository | https://github.com/everapihq/serpnode-rs |
| max_upload_size | |
| id | 1864053 |
| size | 48,140 |
Async Rust client for the Serpnode API using reqwest. Implements status, search, options, and locations.
serpnode = { path = "../serpnode-rs" }
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = serpnode::Client::new(std::env::var("SERPNODE_API_KEY").unwrap());
let status = client.status().await?;
println!("{}", status);
Ok(())
}