orda
Rust client library for the aoe4guides.com API.
Orda provides a simple and type-safe interface for fetching build orders, favorites, and other data from aoe4guides.com.
Internally, it wraps the public REST API using reqwest and serde.
Features
- Optional civilization and sort filters
- Async-first API powered by
reqwest - Lightweight - no global runtime, compatible with any Tokio environment
Install
Add Orda to your project using Cargo:
Or manually in your Cargo.toml:
[]
= "0.1"
Usage
use ;
async
Api overview
get_status()=> Returns the API status (always "running")get_builds(civ, order_by, overlay)=> Fetches up to 10 build ordersget_build(id, overlay)=> Fetches a single build order by IDget_favorites(user_id, civ, order_by, overlay)=> Fetches user favorites
License
Licensed under the Apache 2.0 license.
See the LICENSE file for details