Skip to content

Authentication

Benmebrouk edited this page Apr 12, 2026 · 1 revision

Authentication

RapidAPI (recommended)

  1. Go to RapidAPI
  2. Subscribe to free BASIC plan (300 req/month, no credit card)
  3. Copy your X-RapidAPI-Key
client = HttpClient(
    base_url="https://api.wauldo.com",
    headers={
        "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
        "X-RapidAPI-Host": "smart-rag-api.p.rapidapi.com",
    },
)

Direct API Key

client = HttpClient(base_url="https://api.wauldo.com", api_key="tig_live_...")

Pricing

Plan Price Requests
BASIC $0/mo 300/mo
PRO $9/mo 1,000/mo
ULTRA $29/mo 10,000/mo
MEGA $0.002/req Unlimited

Details at wauldo.com/pricing.

Clone this wiki locally