# Nexusmods API.rs
Rust client for the Nexusmods API.
## Example
```rs
use nexusmods_api_rust_client::client::*;
use tokio;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let nexusmods = NexusMods::new().await?;
let mods = nexusmods.get_trending_mods("skyrim").await?;
println!("{:?}", mods);
Ok(())
}
```