briteverify-rs
provides a type-safe, ergonomic client for
the BriteVerify API based on
the popular reqwest
HTTP client library.
It aims to provide a simple and convenient way to interact with the BriteVerify API from Rust. It tries to be easy to use, with a focus on allowing devs to quickly get up and running with the API.
```rust let response: AccountCreditBalance = BriteVerifyClient::new("YOUR API KEY HERE")? .getaccountbalance() .await?;
println!("{response:#?}"); ```
briteverify-rs
provides:
briteverify-rs
makes a best-effort attempt to stay current with
the BriteVerify API, but is ultimately maintained independently.
Best-effort means that no guarantees are made, but PRs are always
accepted.briteverify-rs
currently implements support for the v3
bulk
endpoints, with no plans to add support for legacy or deprecated
v2
endpoints in this case).