dota2_api

Rust client for the official Dota 2 web API

Nightly is currently required!

Currently available requests

See documentation for more information: https://docs.rs/dota2_api/

Basic example

```rust extern crate dota2_api;

use dota2api::Dota2Api; use dota2api::models::{SkillLevel, MatchHistoryOptions};

fn main() { let mut dota = Dota2Api::new("your key here"); let options = MatchHistoryOptions { matchesrequested: Some(10), skill: Some(SkillLevel::VeryHigh), ..Default::default() }; let data = dota.getmatchhistory(Some(&options)).expect("Couldn't get match history"); for m in data.matches { println!("Match ID: {}, Number of players: {}", m.matchid, m.players.len()); } } ```