Skip to content

Authentication

Benmebrouk edited this page Apr 12, 2026 · 1 revision

Authentication

RapidAPI (recommended)

let config = HttpConfig::new("https://api.wauldo.com")
    .with_header("X-RapidAPI-Key", "YOUR_KEY")
    .with_header("X-RapidAPI-Host", "smart-rag-api.p.rapidapi.com");
let client = HttpClient::new(config)?;

Free: 300 req/month at RapidAPI.

Direct API Key

let config = HttpConfig::new("https://api.wauldo.com").with_api_key("tig_live_...");

Pricing: BASIC $0 (300/mo) | PRO $9 (1k) | ULTRA $29 (10k) | MEGA $0.002/req

Clone this wiki locally