Skip to content
API Documentation

Let developers ask
your documentation.

Like having a senior dev who read every page. Natural language questions, verified answers with source links.

Like having a senior dev who read all your docs

Developers ask questions in plain English. They get precise answers with links to the source.

Dev
"How do I handle rate limiting in the payments API?"
W
"The payments API returns HTTP 429 when rate limited. Implement exponential backoff starting at 1 second, with a maximum of 3 retries. The Retry-After header contains the wait time in seconds."
Confidence: 96% Source: payments/rate-limiting.md
Dev
"What's the maximum payload size for webhooks?"
W
"Webhook payloads are limited to 64KB. Events exceeding this limit are truncated. Use the GET /events/{id} endpoint to retrieve the full event data."
Confidence: 91% Source: webhooks/limits.md

Add to your docs site in 10 lines

Upload your docs, add a search box. That's it.

docs_search.js
import { WauldoClient } from "wauldo";

const client = new WauldoClient({
  baseUrl: "https://api.wauldo.com",
  apiKey: process.env.WAULDO_API_KEY
});

// Handle developer questions
async function askDocs(question) {
  const result = await client.ragQuery(question);

  if (result.grounded) {
    return {
      answer: result.answer,
      source: result.sources[0].title,
      confidence: result.confidence
    };
  }
  return { answer: "No matching documentation found." };
}

Why not just use ChatGPT?

ChatGPT is great for general questions. For your specific documentation, you need something grounded.

ChatGPT / generic AI
  • Trained on old versions of your docs
  • Confidently invents API methods that don't exist
  • No source links — developers can't verify
  • Generic — doesn't know your specific setup
Wauldo
  • Always current — answers from your latest docs
  • Never invents — refuses when unsure
  • Source links on every answer
  • Your docs only — no external data

Perfect for

📦

SaaS platforms

Let your users search your docs without leaving your app. Reduce support load.

🔧

Developer tools

API reference, SDK guides, tutorials — all searchable in natural language.

🏢

Internal dev teams

Onboard new devs faster. They ask questions instead of reading 500 pages of docs.

Make your docs talk

Upload your documentation and let developers find answers in seconds.

Free tier · No credit card · Deploy in 5 minutes