{"info":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","description":"<html><head></head><body><h1 id=\"wauldo-api\">Wauldo API</h1>\n<p><strong>Verified AI answers from your documents — or no answer at all.</strong></p>\n<p>Wauldo is a verification-first AI API. Upload documents, ask questions, and get answers that are checked against your sources before they reach your users.</p>\n<h2 id=\"what-makes-it-different\">What makes it different</h2>\n<p>Every response includes a <strong>trust score</strong> (0.0 to 1.0) and a <strong>verdict</strong> (verified / rejected / weak). Wrong answers are blocked, not served.</p>\n<h2 id=\"core-features\">Core features</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Feature</th>\n<th>Endpoint</th>\n<th>Speed</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Guard</strong> — hallucination firewall</td>\n<td><code>POST /v1/fact-check</code></td>\n<td>&lt;1ms (lexical)</td>\n</tr>\n<tr>\n<td><strong>RAG</strong> — verified document Q&amp;A</td>\n<td><code>POST /v1/query</code></td>\n<td>~1s</td>\n</tr>\n<tr>\n<td><strong>Tasks</strong> — async verified execution</td>\n<td><code>POST /v1/tasks</code></td>\n<td>async</td>\n</tr>\n<tr>\n<td><strong>Agents</strong> — deploy verified AI agents</td>\n<td><code>POST /v1/agents</code></td>\n<td>async</td>\n</tr>\n<tr>\n<td><strong>Chat</strong> — OpenAI-compatible</td>\n<td><code>POST /v1/chat/completions</code></td>\n<td>~2s</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"authentication\">Authentication</h2>\n<p><strong>Option 1 — RapidAPI</strong> (recommended):<br>Get a free API key (300 req/month) at <a href=\"https://rapidapi.com/binnewzzin/api/smart-rag-api\">rapidapi.com/binnewzzin/api/smart-rag-api</a>. Pass <code>X-RapidAPI-Key</code> header.</p>\n<p><strong>Option 2 — Direct API key</strong>:<br>Pass <code>Authorization: {{vault:bearer-token}}</code> header.</p>\n<h2 id=\"sdks\">SDKs</h2>\n<ul>\n<li><p>Python: <code>pip install wauldo</code></p>\n</li>\n<li><p>TypeScript: <code>npm install wauldo</code></p>\n</li>\n<li><p>Rust: <code>cargo add wauldo</code></p>\n</li>\n</ul>\n<h2 id=\"links\">Links</h2>\n<ul>\n<li><p><a href=\"https://wauldo.com/demo\">Live demo</a></p>\n</li>\n<li><p><a href=\"https://wauldo.com/docs\">Documentation</a></p>\n</li>\n<li><p><a href=\"https://wauldo.com/leaderboard\">Leaderboard</a> — 6-framework RAG benchmark</p>\n</li>\n<li><p><a href=\"https://wauldo.com/tools/trust-score\">Trust Score tool</a></p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Wauldo API","slug":"wauldo-api"}],"owner":"53502945","collectionId":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","publishedId":"2sBXitDTBS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-04-12T18:48:19.000Z"},"item":[{"name":"Guard (Hallucination Firewall)","item":[{"name":"Fact-Check — Verified Claim","id":"24746d8e-a4ff-4565-b28a-ffbb230ac901","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Rust was first released in 2010 by Mozilla Research.\",\n  \"source_context\": \"Rust is a systems programming language first released in 2010 by Mozilla Research.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"<p>Verify a text claim against source context.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>text</code> (required) — The LLM-generated text to verify</li>\n<li><code>source_context</code> (required) — The ground-truth source document(s)</li>\n<li><code>mode</code> (optional) — <code>lexical</code> (default), <code>hybrid</code>, or <code>semantic</code></li>\n</ul>\n<p><strong>Response fields:</strong></p>\n<ul>\n<li><code>verdict</code> — <code>verified</code>, <code>rejected</code>, or <code>weak</code></li>\n<li><code>action</code> — <code>allow</code>, <code>block</code>, or <code>review</code></li>\n<li><code>confidence</code> — 0.0 to 1.0</li>\n<li><code>hallucination_rate</code> — 0.0 to 1.0</li>\n<li><code>claims[]</code> — per-claim breakdown with reason</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","fact-check"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"a18720dc-07f0-434e-8108-82d347c16146","name":"200 — Verified","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Rust was first released in 2010 by Mozilla Research.\",\n  \"source_context\": \"Rust is a systems programming language first released in 2010 by Mozilla Research.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"Verify a text claim against source context.\n\n**Parameters:**\n- `text` (required) — The LLM-generated text to verify\n- `source_context` (required) — The ground-truth source document(s)\n- `mode` (optional) — `lexical` (default), `hybrid`, or `semantic`\n\n**Response fields:**\n- `verdict` — `verified`, `rejected`, or `weak`\n- `action` — `allow`, `block`, or `review`\n- `confidence` — 0.0 to 1.0\n- `hallucination_rate` — 0.0 to 1.0\n- `claims[]` — per-claim breakdown with reason"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"verdict\": \"verified\",\n  \"action\": \"allow\",\n  \"hallucination_rate\": 0.0,\n  \"mode\": \"lexical\",\n  \"total_claims\": 1,\n  \"supported_claims\": 1,\n  \"confidence\": 1.0,\n  \"claims\": [\n    {\n      \"text\": \"Rust was first released in 2010 by Mozilla Research.\",\n      \"supported\": true,\n      \"confidence\": 1.0,\n      \"confidence_label\": \"strong\",\n      \"verdict\": \"verified\",\n      \"action\": \"allow\",\n      \"reason\": null\n    }\n  ],\n  \"processing_time_ms\": 0\n}"},{"id":"06f62b78-8a03-4cb9-a602-e352a192313f","name":"401 — Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Rust was first released in 2010 by Mozilla Research.\",\n  \"source_context\": \"Rust is a systems programming language first released in 2010 by Mozilla Research.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"Verify a text claim against source context.\n\n**Parameters:**\n- `text` (required) — The LLM-generated text to verify\n- `source_context` (required) — The ground-truth source document(s)\n- `mode` (optional) — `lexical` (default), `hybrid`, or `semantic`\n\n**Response fields:**\n- `verdict` — `verified`, `rejected`, or `weak`\n- `action` — `allow`, `block`, or `review`\n- `confidence` — 0.0 to 1.0\n- `hallucination_rate` — 0.0 to 1.0\n- `claims[]` — per-claim breakdown with reason"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\n    \"code\": \"invalid_api_key\",\n    \"message\": \"Invalid credentials\",\n    \"type\": \"authentication_error\"\n  }\n}"}],"_postman_id":"24746d8e-a4ff-4565-b28a-ffbb230ac901"},{"name":"Fact-Check — Rejected (Contradiction)","id":"2e13652c-76dc-4c61-8413-34bc63b22af6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Returns are accepted within 60 days of purchase.\",\n  \"source_context\": \"Our return policy allows returns within 14 days.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"<p>Example: the text claims \"60 days\" but the source says \"14 days\". Guard detects the numerical mismatch and rejects the claim.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","fact-check"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"db7c9fb9-2ab6-4ca1-a1b5-cdb8f2d92dba","name":"200 — Rejected","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Returns are accepted within 60 days of purchase.\",\n  \"source_context\": \"Our return policy allows returns within 14 days.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"Example: the text claims \"60 days\" but the source says \"14 days\". Guard detects the numerical mismatch and rejects the claim."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"verdict\": \"rejected\",\n  \"action\": \"block\",\n  \"hallucination_rate\": 1.0,\n  \"mode\": \"lexical\",\n  \"total_claims\": 1,\n  \"supported_claims\": 0,\n  \"confidence\": 0.0,\n  \"claims\": [\n    {\n      \"text\": \"Returns are accepted within 60 days of purchase.\",\n      \"supported\": false,\n      \"confidence\": 0.3,\n      \"confidence_label\": \"very_low\",\n      \"verdict\": \"rejected\",\n      \"action\": \"block\",\n      \"reason\": \"numerical_mismatch\",\n      \"evidence\": \"Our return policy allows returns within 14 days.\"\n    }\n  ],\n  \"processing_time_ms\": 0\n}"}],"_postman_id":"2e13652c-76dc-4c61-8413-34bc63b22af6"},{"name":"Fact-Check — Multiple Claims (Mixed)","id":"17048ec6-59ce-4c5e-b848-8083d123118c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Customers have 30 days for refunds. Exchanges are possible within 60 days. Gift cards never expire.\",\n  \"source_context\": \"Our return policy: customers have 30 days for full refunds. Exchanges must be made within 14 days. Gift cards expire after 12 months.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"<p>Example with 3 claims: one correct (30 days), one contradicted (60 vs 14), one negation conflict (never expire vs 12 months). Guard evaluates each claim independently.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","fact-check"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"f9305064-0a7b-4164-b0a9-3bce651d682b","name":"200 — Mixed verdicts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Customers have 30 days for refunds. Exchanges are possible within 60 days. Gift cards never expire.\",\n  \"source_context\": \"Our return policy: customers have 30 days for full refunds. Exchanges must be made within 14 days. Gift cards expire after 12 months.\",\n  \"mode\": \"lexical\"\n}"},"url":"https://api.wauldo.com/v1/fact-check","description":"Example with 3 claims: one correct (30 days), one contradicted (60 vs 14), one negation conflict (never expire vs 12 months). Guard evaluates each claim independently."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"verdict\": \"rejected\",\n  \"action\": \"block\",\n  \"hallucination_rate\": 0.667,\n  \"mode\": \"lexical\",\n  \"total_claims\": 3,\n  \"supported_claims\": 1,\n  \"confidence\": 0.33,\n  \"claims\": [\n    {\"text\": \"Customers have 30 days for refunds.\", \"supported\": true, \"verdict\": \"verified\", \"action\": \"allow\", \"reason\": null},\n    {\"text\": \"Exchanges are possible within 60 days.\", \"supported\": false, \"verdict\": \"rejected\", \"action\": \"block\", \"reason\": \"numerical_mismatch\"},\n    {\"text\": \"Gift cards never expire.\", \"supported\": false, \"verdict\": \"rejected\", \"action\": \"block\", \"reason\": \"negation_conflict\"}\n  ],\n  \"processing_time_ms\": 0\n}"}],"_postman_id":"17048ec6-59ce-4c5e-b848-8083d123118c"}],"id":"57164cc6-2b47-4b5e-a892-358296e3e1c5","description":"<p>Guard verifies LLM outputs against source documents. It compares claims in the text to facts in the source and returns a verdict per claim.</p>\n<p><strong>3 verification modes:</strong></p>\n<ul>\n<li><code>lexical</code> — token overlap + contradiction detection (&lt;1ms)</li>\n<li><code>hybrid</code> — token + semantic embedding (~50ms)</li>\n<li><code>semantic</code> — full embedding similarity (~500ms)</li>\n</ul>\n<p><strong>Verdicts:</strong> <code>verified</code> (safe), <code>rejected</code> (blocked), <code>weak</code> (review needed)</p>\n<p><strong>Use case:</strong> Add Guard after any LLM call to catch hallucinations before they reach users.</p>\n","_postman_id":"57164cc6-2b47-4b5e-a892-358296e3e1c5","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Citation Verify","item":[{"name":"Verify Citations","id":"bca61805-e2ae-4480-95ab-d7e1e33a718b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Rust is memory safe [1]. It uses ownership [2]. No garbage collector needed.\",\n  \"sources\": [\n    {\"name\": \"rust_book\", \"content\": \"Rust guarantees memory safety through ownership.\"}\n  ],\n  \"threshold\": 0.5\n}"},"url":"https://api.wauldo.com/v1/verify","description":"<p>Check citation coverage in AI-generated text.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>text</code> (required) — AI-generated text to verify</li>\n<li><code>sources</code> (optional) — Array of <code>{name, content}</code> source documents</li>\n<li><code>threshold</code> (optional) — Min citation ratio (0.0 to 1.0, default 0.5)</li>\n</ul>\n<p><strong>Detected formats:</strong> <code>[Source: X]</code>, <code>[1]</code>, <code>(Ref: X)</code>, <code>^N</code></p>\n<p><strong>Response fields:</strong></p>\n<ul>\n<li><code>citation_ratio</code> — Fraction of sentences with citations</li>\n<li><code>has_sufficient_citations</code> — True if ratio &gt;= threshold</li>\n<li><code>uncited_sentences</code> — List of sentences without citations</li>\n<li><code>phantom_count</code> — Citations referencing non-existent sources</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","verify"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"54031da1-2327-4b95-abc9-591f8f47558e","name":"200 — Sufficient citations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"text\": \"Rust is memory safe [1]. It uses ownership [2]. No garbage collector needed.\",\n  \"sources\": [\n    {\"name\": \"rust_book\", \"content\": \"Rust guarantees memory safety through ownership.\"}\n  ],\n  \"threshold\": 0.5\n}"},"url":"https://api.wauldo.com/v1/verify","description":"Check citation coverage in AI-generated text.\n\n**Parameters:**\n- `text` (required) — AI-generated text to verify\n- `sources` (optional) — Array of `{name, content}` source documents\n- `threshold` (optional) — Min citation ratio (0.0 to 1.0, default 0.5)\n\n**Detected formats:** `[Source: X]`, `[1]`, `(Ref: X)`, `^N`\n\n**Response fields:**\n- `citation_ratio` — Fraction of sentences with citations\n- `has_sufficient_citations` — True if ratio >= threshold\n- `uncited_sentences` — List of sentences without citations\n- `phantom_count` — Citations referencing non-existent sources"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"citation_ratio\": 0.67,\n  \"has_sufficient_citations\": true,\n  \"sentence_count\": 3,\n  \"citation_count\": 2,\n  \"uncited_sentences\": [\"No garbage collector needed.\"],\n  \"citations\": [\n    {\"citation\": \"[1]\", \"is_valid\": true},\n    {\"citation\": \"[2]\", \"is_valid\": true}\n  ],\n  \"phantom_count\": 0,\n  \"processing_time_ms\": 0\n}"}],"_postman_id":"bca61805-e2ae-4480-95ab-d7e1e33a718b"}],"id":"5025268e-4317-49f4-8b6c-9b8e7e2e4dd0","description":"<p>Verify that AI-generated text properly cites its sources. Detects uncited sentences and phantom citations (references to non-existent sources).</p>\n<p>No LLM required — pure text analysis, &lt;1ms latency.</p>\n","_postman_id":"5025268e-4317-49f4-8b6c-9b8e7e2e4dd0","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"RAG (Document Q&A)","item":[{"name":"Upload Document (text)","id":"74c9068b-0a39-4129-8926-70a8d4001579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"Our refund policy allows returns within 14 days of purchase. Items must be unused and in original packaging. Refunds are processed within 5 business days.\",\n  \"filename\": \"refund-policy.txt\"\n}"},"url":"https://api.wauldo.com/v1/upload","description":"<p>Upload text content for RAG indexing.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>content</code> (required) — Text content to index</li>\n<li><code>filename</code> (optional) — Source filename for tracking</li>\n</ul>\n<p><strong>Response:</strong> <code>document_id</code> for subsequent queries, <code>chunks_count</code> showing how many chunks were created.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","upload"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"4c78a067-e3a7-4c2b-95c4-74d0d6c22823","name":"200 — Uploaded","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"Our refund policy allows returns within 14 days of purchase. Items must be unused and in original packaging. Refunds are processed within 5 business days.\",\n  \"filename\": \"refund-policy.txt\"\n}"},"url":"https://api.wauldo.com/v1/upload","description":"Upload text content for RAG indexing.\n\n**Parameters:**\n- `content` (required) — Text content to index\n- `filename` (optional) — Source filename for tracking\n\n**Response:** `document_id` for subsequent queries, `chunks_count` showing how many chunks were created."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"document_id\": \"user123::a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n  \"chunks_count\": 2,\n  \"indexed_at\": \"2026-04-12T10:00:00Z\",\n  \"content_type\": \"text\",\n  \"trace_id\": \"abc-123\"\n}"}],"_postman_id":"74c9068b-0a39-4129-8926-70a8d4001579"},{"name":"Upload File (PDF/DOCX/image)","id":"fc14cfc1-15f3-4b13-a302-14a2724f0cd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>File to upload. Max 10MB.</p>\n","src":"report.pdf"},{"key":"title","value":"Quarterly Report","type":"text","description":"<p>Optional title</p>\n"},{"key":"tags","value":"finance,q4","type":"text","description":"<p>Optional comma-separated tags</p>\n"}]},"url":"https://api.wauldo.com/v1/upload-file","description":"<p>Upload a file directly (multipart). Text is extracted server-side.</p>\n<p><strong>Supported:</strong> PDF, DOCX, TXT, MD, JSON, YAML, CSV, code files, PNG, JPG, WebP, GIF\n<strong>Rejected (415):</strong> DOC, XLS, XLSX, PPT, PPTX, ODT, ODS\n<strong>Max size:</strong> 10MB</p>\n<p><strong>PDF extraction:</strong> text-based PDFs only. Scanned/image-only PDFs return 422.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","upload-file"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"18cbb8b8-62ad-4df1-ac72-365895d3dbe5","name":"200 — PDF uploaded","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"File to upload. Max 10MB.","src":"report.pdf"},{"key":"title","value":"Quarterly Report","type":"text","description":"Optional title"},{"key":"tags","value":"finance,q4","type":"text","description":"Optional comma-separated tags"}]},"url":"https://api.wauldo.com/v1/upload-file","description":"Upload a file directly (multipart). Text is extracted server-side.\n\n**Supported:** PDF, DOCX, TXT, MD, JSON, YAML, CSV, code files, PNG, JPG, WebP, GIF\n**Rejected (415):** DOC, XLS, XLSX, PPT, PPTX, ODT, ODS\n**Max size:** 10MB\n\n**PDF extraction:** text-based PDFs only. Scanned/image-only PDFs return 422."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"document_id\": \"user123::e3b8646f-c28a-495b-ae36-bd5a123d804f\",\n  \"chunks_count\": 12,\n  \"indexed_at\": \"2026-04-12T09:03:28Z\",\n  \"content_type\": \"pdf\",\n  \"quality\": {\n    \"score\": 0.71,\n    \"label\": \"high\",\n    \"word_count\": 2450\n  }\n}"},{"id":"77a04aa4-cfdc-4e85-8dc5-a25470caf196","name":"415 — Unsupported format","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"File to upload. Max 10MB.","src":"report.pdf"},{"key":"title","value":"Quarterly Report","type":"text","description":"Optional title"},{"key":"tags","value":"finance,q4","type":"text","description":"Optional comma-separated tags"}]},"url":"https://api.wauldo.com/v1/upload-file","description":"Upload a file directly (multipart). Text is extracted server-side.\n\n**Supported:** PDF, DOCX, TXT, MD, JSON, YAML, CSV, code files, PNG, JPG, WebP, GIF\n**Rejected (415):** DOC, XLS, XLSX, PPT, PPTX, ODT, ODS\n**Max size:** 10MB\n\n**PDF extraction:** text-based PDFs only. Scanned/image-only PDFs return 422."},"status":"Unsupported Media Type","code":415,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\"message\": \"Unsupported file type: .xlsx\", \"type\": \"unsupported_media_type\"}\n}"},{"id":"288e804d-740b-4a87-bb2c-3ba319e01877","name":"422 — Scanned PDF","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"File to upload. Max 10MB.","src":"report.pdf"},{"key":"title","value":"Quarterly Report","type":"text","description":"Optional title"},{"key":"tags","value":"finance,q4","type":"text","description":"Optional comma-separated tags"}]},"url":"https://api.wauldo.com/v1/upload-file","description":"Upload a file directly (multipart). Text is extracted server-side.\n\n**Supported:** PDF, DOCX, TXT, MD, JSON, YAML, CSV, code files, PNG, JPG, WebP, GIF\n**Rejected (415):** DOC, XLS, XLSX, PPT, PPTX, ODT, ODS\n**Max size:** 10MB\n\n**PDF extraction:** text-based PDFs only. Scanned/image-only PDFs return 422."},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"error\": {\"message\": \"No extractable text in PDF (scanned/image-only)\", \"type\": \"extraction_failed\"}\n}"}],"_postman_id":"fc14cfc1-15f3-4b13-a302-14a2724f0cd2"},{"name":"Query Documents","id":"b0f2cc7d-a6d9-41ee-9eba-d2bf07f79f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"query\": \"What is the refund policy?\",\n  \"top_k\": 3\n}"},"url":"https://api.wauldo.com/v1/query","description":"<p>Ask a question over uploaded documents. Returns a verified answer with sources and confidence.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>query</code> (required) — Your question</li>\n<li><code>top_k</code> (optional) — Number of source chunks to retrieve (default 5, max 100)</li>\n<li><code>debug</code> (optional) — Include extended audit info</li>\n<li><code>quality_mode</code> (optional) — Override model selection</li>\n</ul>\n<p><strong>Response includes:</strong></p>\n<ul>\n<li><code>answer</code> — The verified answer</li>\n<li><code>sources[]</code> — Source chunks with relevance scores</li>\n<li><code>audit</code> — Confidence, grounding status, model used, latency</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","query"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"e6d8c741-1168-4762-9c16-a71298f8d2c5","name":"200 — Verified answer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"query\": \"What is the refund policy?\",\n  \"top_k\": 3\n}"},"url":"https://api.wauldo.com/v1/query","description":"Ask a question over uploaded documents. Returns a verified answer with sources and confidence.\n\n**Parameters:**\n- `query` (required) — Your question\n- `top_k` (optional) — Number of source chunks to retrieve (default 5, max 100)\n- `debug` (optional) — Include extended audit info\n- `quality_mode` (optional) — Override model selection\n\n**Response includes:**\n- `answer` — The verified answer\n- `sources[]` — Source chunks with relevance scores\n- `audit` — Confidence, grounding status, model used, latency"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"answer\": \"The refund policy allows returns within 14 days of purchase. Items must be unused and in original packaging.\",\n  \"sources\": [\n    {\n      \"document_id\": \"user123::a1b2c3d4\",\n      \"content\": \"Our refund policy allows returns within 14 days of purchase...\",\n      \"score\": 0.92\n    }\n  ],\n  \"audit\": {\n    \"confidence\": 0.92,\n    \"confidence_label\": \"high\",\n    \"grounded\": true,\n    \"model\": \"auto\",\n    \"latency_ms\": 1200\n  }\n}"}],"_postman_id":"b0f2cc7d-a6d9-41ee-9eba-d2bf07f79f75"},{"name":"List Documents","id":"839debaa-4f8e-4674-9e96-f63587ca9c92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/documents","description":"<p>List all documents uploaded by the current tenant.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","documents"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"8f55dfee-115a-4719-b55d-f1e095b0e93e","name":"200 — Documents list","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/documents","description":"List all documents uploaded by the current tenant."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"documents\": [\n    {\n      \"document_id\": \"user123::a1b2c3d4\",\n      \"chunks_count\": 2,\n      \"total_tokens\": 150,\n      \"preview\": \"Our refund policy allows returns...\"\n    }\n  ],\n  \"total\": 1\n}"}],"_postman_id":"839debaa-4f8e-4674-9e96-f63587ca9c92"},{"name":"Delete Document","id":"1471eb60-7e4f-48a9-991d-b2b7b61f8da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/documents/YOUR_DOCUMENT_ID","description":"<p>Delete a document and all its chunks from the index.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","documents","YOUR_DOCUMENT_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"8f30dbbc-1f2b-4f1e-a143-03404032fe98","name":"200 — Deleted","originalRequest":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/documents/YOUR_DOCUMENT_ID","description":"Delete a document and all its chunks from the index."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"deleted\": true,\n  \"chunks_removed\": 2\n}"}],"_postman_id":"1471eb60-7e4f-48a9-991d-b2b7b61f8da3"},{"name":"List Collections","id":"6b093551-04a6-4f12-b8e6-1cac2e4b4611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/collections","description":"<p>List document collections with aggregate stats.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","collections"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"ad0b0b17-de1b-44b7-aab2-812d2f6963a3","name":"200 — Collections","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/collections","description":"List document collections with aggregate stats."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"collections\": [{\"collection_id\": \"user123\", \"documents_count\": 3, \"chunks_count\": 12}],\n  \"total\": 1\n}"}],"_postman_id":"6b093551-04a6-4f12-b8e6-1cac2e4b4611"},{"name":"RAG Stats","id":"d35b14ee-ffc1-43b5-9d04-956b59ec9d33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/stats","description":"<p>Get RAG storage statistics: total documents, chunks, tokens, capacity usage.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","stats"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"36b455c0-a1c2-434e-9b64-4e20ea820252","name":"200 — Stats","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/stats","description":"Get RAG storage statistics: total documents, chunks, tokens, capacity usage."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"total_documents\": 5,\n  \"total_chunks\": 24,\n  \"total_tokens\": 8500,\n  \"capacity_usage_percent\": 0.048\n}"}],"_postman_id":"d35b14ee-ffc1-43b5-9d04-956b59ec9d33"}],"id":"69c3a073-059b-4ed6-9519-35b4cdae72e1","description":"<p>Upload documents and ask verified questions. Every answer is checked against the source documents before being returned.</p>\n<p><strong>Supported formats:</strong> PDF, DOCX, TXT, MD, JSON, YAML, CSV, 30+ code file types, PNG, JPG, WebP, GIF.</p>\n<p><strong>Pipeline:</strong> Upload → Chunk → Index → Query → Retrieve → Generate → Verify → Respond</p>\n","_postman_id":"69c3a073-059b-4ed6-9519-35b4cdae72e1","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Chat (OpenAI-compatible)","item":[{"name":"Chat Completion","id":"ea0e3075-820d-4d3c-aa44-01dda86bb794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"model\": \"auto\",\n  \"messages\": [\n    {\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},\n    {\"role\": \"user\", \"content\": \"What is Rust?\"}\n  ],\n  \"temperature\": 0.7\n}"},"url":"https://api.wauldo.com/v1/chat/completions","description":"<p>OpenAI-compatible chat endpoint.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>model</code> — Use <code>auto</code> for smart routing</li>\n<li><code>messages[]</code> — Array of <code>{role, content}</code> messages</li>\n<li><code>temperature</code> (optional) — 0.0 to 1.0</li>\n<li><code>max_tokens</code> (optional)</li>\n<li><code>stream</code> (optional) — Set to <code>true</code> for SSE streaming</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","chat","completions"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"140d71af-c1ed-4a4a-a5d0-b94070a6f38c","name":"200 — Chat response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"model\": \"auto\",\n  \"messages\": [\n    {\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},\n    {\"role\": \"user\", \"content\": \"What is Rust?\"}\n  ],\n  \"temperature\": 0.7\n}"},"url":"https://api.wauldo.com/v1/chat/completions","description":"OpenAI-compatible chat endpoint.\n\n**Parameters:**\n- `model` — Use `auto` for smart routing\n- `messages[]` — Array of `{role, content}` messages\n- `temperature` (optional) — 0.0 to 1.0\n- `max_tokens` (optional)\n- `stream` (optional) — Set to `true` for SSE streaming"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"tig_abc123\",\n  \"object\": \"chat.completion\",\n  \"model\": \"auto\",\n  \"choices\": [\n    {\n      \"index\": 0,\n      \"message\": {\"role\": \"assistant\", \"content\": \"Rust is a systems programming language focused on safety, speed, and concurrency.\"},\n      \"finish_reason\": \"stop\"\n    }\n  ],\n  \"usage\": {\"prompt_tokens\": 20, \"completion_tokens\": 15, \"total_tokens\": 35}\n}"}],"_postman_id":"ea0e3075-820d-4d3c-aa44-01dda86bb794"},{"name":"List Models","id":"f1e26777-2ffd-4623-95a6-3a555c01c10d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/models","description":"<p>List available models. Returns OpenAI-compatible model list.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","models"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"2f1e040d-cb2a-4fa8-8f6a-290842ca7366","name":"200 — Models","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/models","description":"List available models. Returns OpenAI-compatible model list."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"object\": \"list\",\n  \"data\": [\n    {\"id\": \"wauldo\", \"object\": \"model\", \"owned_by\": \"wauldo\"},\n    {\"id\": \"wauldo-rag\", \"object\": \"model\", \"owned_by\": \"wauldo\"},\n    {\"id\": \"wauldo-reasoning\", \"object\": \"model\", \"owned_by\": \"wauldo\"}\n  ]\n}"}],"_postman_id":"f1e26777-2ffd-4623-95a6-3a555c01c10d"},{"name":"Embeddings","id":"702d1b78-ec64-4dc3-9fd6-dd7da361c4c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"The quick brown fox jumps over the lazy dog.\",\n  \"model\": \"default\"\n}"},"url":"https://api.wauldo.com/v1/embeddings","description":"<p>Generate vector embeddings. OpenAI-compatible.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>input</code> — String or array of strings</li>\n<li><code>model</code> — Embedding model name</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","embeddings"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"36792ca5-e1c8-4024-b791-d6f407384bd9","name":"200 — Embeddings","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"The quick brown fox jumps over the lazy dog.\",\n  \"model\": \"default\"\n}"},"url":"https://api.wauldo.com/v1/embeddings","description":"Generate vector embeddings. OpenAI-compatible.\n\n**Parameters:**\n- `input` — String or array of strings\n- `model` — Embedding model name"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [{\"embedding\": [0.012, -0.034, 0.056], \"index\": 0}],\n  \"model\": \"bge-small-en\",\n  \"usage\": {\"prompt_tokens\": 10, \"total_tokens\": 10}\n}"}],"_postman_id":"702d1b78-ec64-4dc3-9fd6-dd7da361c4c0"}],"id":"840817b1-85c2-4b12-9842-ce542acef749","description":"<p>Standard OpenAI-compatible chat completions. Supports streaming (SSE) and non-streaming modes.</p>\n","_postman_id":"840817b1-85c2-4b12-9842-ce542acef749","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Tasks (Verified Execution)","item":[{"name":"Create Task","id":"b472f0c0-44eb-48d2-b51d-009e4b15ac0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"prompt\": \"What is the refund policy?\",\n  \"verification_mode\": \"balanced\"\n}"},"url":"https://api.wauldo.com/v1/tasks","description":"<p>Create an async verified task.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>prompt</code> (required) — The question or instruction (max 10k chars)</li>\n<li><code>verification_mode</code> (optional) — <code>strict</code>, <code>balanced</code> (default), or <code>permissive</code></li>\n<li><code>webhook_url</code> (optional) — URL to POST result on completion</li>\n<li><code>max_retries</code> (optional) — Max verification retries (default 2, max 10)</li>\n</ul>\n<p>Returns immediately with <code>task_id</code>. Poll <code>GET /v1/tasks/:id</code> for result.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"fe6082ee-6d27-4c7a-ae7d-c30d7660bbd7","name":"200 — Task created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"prompt\": \"What is the refund policy?\",\n  \"verification_mode\": \"balanced\"\n}"},"url":"https://api.wauldo.com/v1/tasks","description":"Create an async verified task.\n\n**Parameters:**\n- `prompt` (required) — The question or instruction (max 10k chars)\n- `verification_mode` (optional) — `strict`, `balanced` (default), or `permissive`\n- `webhook_url` (optional) — URL to POST result on completion\n- `max_retries` (optional) — Max verification retries (default 2, max 10)\n\nReturns immediately with `task_id`. Poll `GET /v1/tasks/:id` for result."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"task_id\": \"t_abc123\",\n  \"status\": \"queued\"\n}"}],"_postman_id":"b472f0c0-44eb-48d2-b51d-009e4b15ac0f"},{"name":"List Tasks","id":"6f8fadb1-337d-4fdf-ae2a-189bafa2affd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/tasks?limit=10&offset=0","description":"<p>List tasks with pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks"],"host":["https://api.wauldo.com"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"f8392b1e-6bf6-4aea-aa8b-21beac4ebdc2","name":"200 — Task list","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.wauldo.com/v1/tasks?limit=10&offset=0","host":["https://api.wauldo.com"],"path":["v1","tasks"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]},"description":"List tasks with pagination."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"tasks\": [{\"task_id\": \"t_abc123\", \"status\": \"completed\"}],\n  \"total\": 1\n}"}],"_postman_id":"6f8fadb1-337d-4fdf-ae2a-189bafa2affd"},{"name":"Get Task","id":"20563448-1720-4de8-a437-4ed92de2c3ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"<p>Get task status, result, and verification details.</p>\n<p><strong>Statuses:</strong> <code>queued</code>, <code>running</code>, <code>completed</code>, <code>failed</code>, <code>cancelled</code>, <code>paused</code></p>\n<p><strong>When completed</strong>, includes:</p>\n<ul>\n<li><code>result</code> — The verified answer</li>\n<li><code>verification.verdict</code> — SAFE, BLOCK, CONFLICT, etc.</li>\n<li><code>verification.trust_score</code> — 0.0 to 1.0</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"45719ee2-78cd-4971-a81e-af3ee9eab8f0","name":"200 — Completed task","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"Get task status, result, and verification details.\n\n**Statuses:** `queued`, `running`, `completed`, `failed`, `cancelled`, `paused`\n\n**When completed**, includes:\n- `result` — The verified answer\n- `verification.verdict` — SAFE, BLOCK, CONFLICT, etc.\n- `verification.trust_score` — 0.0 to 1.0"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"task_id\": \"t_abc123\",\n  \"status\": \"completed\",\n  \"result\": \"The refund policy allows returns within 14 days.\",\n  \"verification\": {\n    \"verdict\": \"SAFE\",\n    \"trust_score\": 0.92,\n    \"claims_verified\": 1,\n    \"claims_total\": 1\n  }\n}"}],"_postman_id":"20563448-1720-4de8-a437-4ed92de2c3ea"},{"name":"Cancel Task","id":"08af977c-8592-41be-a16e-ccab22cfc59a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"<p>Cancel a running or queued task.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"79dfada3-3d9a-4420-9404-f3f2113e08c3","name":"200 — Cancelled","originalRequest":{"method":"PUT","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"Cancel a running or queued task."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"task_id\": \"t_abc123\",\n  \"status\": \"cancelled\"\n}"}],"_postman_id":"08af977c-8592-41be-a16e-ccab22cfc59a"},{"name":"Delete Task","id":"840fcc29-6fb5-4b06-ba6d-0338061556f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"<p>Delete a terminal task (completed, failed, or cancelled).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"e1eef3f1-d571-4cbe-a725-a52a417f326f","name":"200 — Deleted","originalRequest":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID","description":"Delete a terminal task (completed, failed, or cancelled)."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"deleted\": true\n}"}],"_postman_id":"840fcc29-6fb5-4b06-ba6d-0338061556f4"},{"name":"Stream Task (SSE)","id":"159802e0-574d-4005-95fa-bbe590780b6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/stream","description":"<p>Server-Sent Events stream of task state transitions. Connect and receive real-time updates as the task progresses through queued → running → completed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID","stream"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"06362c0d-8e29-415e-856a-a278bcc204e2","name":"200 — SSE stream","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/stream","description":"Server-Sent Events stream of task state transitions. Connect and receive real-time updates as the task progresses through queued → running → completed."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"data: {\"status\": \"running\"}\n\ndata: {\"status\": \"completed\", \"result\": \"...\"}\n\ndata: [DONE]"}],"_postman_id":"159802e0-574d-4005-95fa-bbe590780b6a"},{"name":"Pause Task (HITL)","id":"b5a8555f-dd4d-4d69-9de8-b448e35e420a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/pause","description":"<p>Pause a running task for human review.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID","pause"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"dbbde4dd-cb36-4c9f-b884-bbba21fafc96","name":"200 — Paused","originalRequest":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/pause","description":"Pause a running task for human review."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"paused\"\n}"}],"_postman_id":"b5a8555f-dd4d-4d69-9de8-b448e35e420a"},{"name":"Approve Task (HITL)","id":"281f3c0d-0566-40f9-bfde-b479d2dcee36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/approve","description":"<p>Approve a paused task to resume execution.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID","approve"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"42b7bb46-e9cd-4557-a5aa-9bf776c36164","name":"200 — Resumed","originalRequest":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/approve","description":"Approve a paused task to resume execution."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"running\"\n}"}],"_postman_id":"281f3c0d-0566-40f9-bfde-b479d2dcee36"},{"name":"Reject Task (HITL)","id":"4d038c6b-5781-41ef-827a-92cc49c2cb94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/reject","description":"<p>Reject a paused task. The task is terminated.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","tasks","YOUR_TASK_ID","reject"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"44d68040-c815-4ac5-a047-e345b88acbda","name":"200 — Rejected","originalRequest":{"method":"POST","header":[],"url":"https://api.wauldo.com/v1/tasks/YOUR_TASK_ID/reject","description":"Reject a paused task. The task is terminated."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"rejected\"\n}"}],"_postman_id":"4d038c6b-5781-41ef-827a-92cc49c2cb94"}],"id":"8f610b6c-e7ef-4e7f-af3c-8170a7d24ef6","description":"<p>Async task execution with source-grounded verification.</p>\n<p><strong>Flow:</strong> Create task → Poll for status → Get verified result with trust_score.</p>\n<p><strong>Verdicts:</strong> SAFE, UNCERTAIN, PARTIAL, BLOCK, UNVERIFIED, CONFLICT</p>\n<p><strong>HITL (Human-in-the-Loop):</strong> Pause, approve, or reject tasks for human review.</p>\n","_postman_id":"8f610b6c-e7ef-4e7f-af3c-8170a7d24ef6","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Agents (Deploy)","item":[{"name":"Create Agent","id":"f25209d2-3239-4f51-87a3-d329bbb50db4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"support-bot\",\n  \"system_prompt\": \"You are a helpful support agent. Answer questions about our refund policy.\",\n  \"model\": \"auto\",\n  \"verification_mode\": \"balanced\"\n}"},"url":"https://api.wauldo.com/v1/agents","description":"<p>Create a new verified agent.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>name</code> (required) — Unique agent name</li>\n<li><code>system_prompt</code> (optional) — System instructions</li>\n<li><code>model</code> (optional) — LLM model (default: <code>auto</code>)</li>\n<li><code>verification_mode</code> (optional) — <code>strict</code>, <code>balanced</code>, <code>permissive</code></li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"58802de5-7060-4d5b-9184-344bde601c74","name":"200 — Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"support-bot\",\n  \"system_prompt\": \"You are a helpful support agent. Answer questions about our refund policy.\",\n  \"model\": \"auto\",\n  \"verification_mode\": \"balanced\"\n}"},"url":"https://api.wauldo.com/v1/agents","description":"Create a new verified agent.\n\n**Parameters:**\n- `name` (required) — Unique agent name\n- `system_prompt` (optional) — System instructions\n- `model` (optional) — LLM model (default: `auto`)\n- `verification_mode` (optional) — `strict`, `balanced`, `permissive`"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"agent_id\": \"ag_abc123\",\n  \"name\": \"support-bot\",\n  \"created_at\": \"2026-04-12T10:00:00Z\"\n}"}],"_postman_id":"f25209d2-3239-4f51-87a3-d329bbb50db4"},{"name":"List Agents","id":"a5f0dfbf-22ce-4a1b-9a19-75b60aaa0e33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/agents","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"102fbbb3-6786-4c31-9bc1-f7c0d578df58","name":"200 — Agents","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/agents"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"agents\": [{\"agent_id\": \"ag_abc123\", \"name\": \"support-bot\"}],\n  \"total\": 1\n}"}],"_postman_id":"a5f0dfbf-22ce-4a1b-9a19-75b60aaa0e33"},{"name":"Get Agent","id":"f5068a2c-7bb7-4276-ba68-202154a28d30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents","YOUR_AGENT_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"2bba2188-57d9-42ff-bac1-3d3463f2c669","name":"200 — Agent detail","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"agent_id\": \"ag_abc123\",\n  \"name\": \"support-bot\",\n  \"system_prompt\": \"You are a helpful support agent.\",\n  \"model\": \"auto\",\n  \"verification_mode\": \"balanced\"\n}"}],"_postman_id":"f5068a2c-7bb7-4276-ba68-202154a28d30"},{"name":"Update Agent","id":"9efeee6c-437f-46d6-9e64-e4857451287d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"system_prompt\": \"You are an expert billing support agent.\"\n}"},"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID","description":"<p>Partial update. Only send fields you want to change.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents","YOUR_AGENT_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"562a60f9-3e16-4bf7-88ea-50973d13ac32","name":"200 — Updated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"system_prompt\": \"You are an expert billing support agent.\"\n}"},"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID","description":"Partial update. Only send fields you want to change."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"agent_id\": \"ag_abc123\",\n  \"updated_at\": \"2026-04-12T11:00:00Z\"\n}"}],"_postman_id":"9efeee6c-437f-46d6-9e64-e4857451287d"},{"name":"Delete Agent","id":"773d6c07-bc19-4bc6-ac78-e3020df43c25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents","YOUR_AGENT_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"c5ad6251-efe2-4256-a80b-4b737fe7d331","name":"200 — Deleted","originalRequest":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"deleted\": true\n}"}],"_postman_id":"773d6c07-bc19-4bc6-ac78-e3020df43c25"},{"name":"Run Agent","id":"6db5a090-3f01-40b4-b087-c954116344de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"How do I get a refund?\"\n}"},"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID/runs","description":"<p>Execute an agent. Returns a verified response with trust score.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","agents","YOUR_AGENT_ID","runs"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"374c1132-d3b0-4d4e-83ec-030c3cd12264","name":"200 — Agent response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"How do I get a refund?\"\n}"},"url":"https://api.wauldo.com/v1/agents/YOUR_AGENT_ID/runs","description":"Execute an agent. Returns a verified response with trust score."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"output\": \"You can request a refund within 14 days of purchase by contacting support.\",\n  \"verification\": {\n    \"verdict\": \"SAFE\",\n    \"trust_score\": 0.95\n  }\n}"}],"_postman_id":"6db5a090-3f01-40b4-b087-c954116344de"}],"id":"904ee19a-e9ff-4e96-bb6a-0d3fc2539f18","description":"<p>Create, configure, and run verified AI agents. Each agent has a system prompt, model, and verification mode. Every agent response is fact-checked before delivery.</p>\n","_postman_id":"904ee19a-e9ff-4e96-bb6a-0d3fc2539f18","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Memory (Deploy)","item":[{"name":"Upsert Entry","id":"083371bd-3c07-49a9-b093-18fd9e53796d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"user_preference\",\n  \"value\": \"prefers email over phone\",\n  \"tags\": [\"preference\", \"contact\"]\n}"},"url":"https://api.wauldo.com/v1/memory/default","description":"<p>Create or update a memory entry.</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>key</code> (required) — Entry identifier</li>\n<li><code>value</code> (required) — Content to store</li>\n<li><code>tags</code> (optional) — Array of tags for filtering</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","memory","default"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"5ccf2d58-ded0-4d60-9c90-cd76aac15c4b","name":"200 — Stored","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"user_preference\",\n  \"value\": \"prefers email over phone\",\n  \"tags\": [\"preference\", \"contact\"]\n}"},"url":"https://api.wauldo.com/v1/memory/default","description":"Create or update a memory entry.\n\n**Parameters:**\n- `key` (required) — Entry identifier\n- `value` (required) — Content to store\n- `tags` (optional) — Array of tags for filtering"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"key\": \"user_preference\",\n  \"created\": true\n}"}],"_postman_id":"083371bd-3c07-49a9-b093-18fd9e53796d"},{"name":"List Entries","id":"d8e358e0-95ea-4b82-999f-cd7580440efa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/memory/default?limit=10&offset=0","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","memory","default"],"host":["https://api.wauldo.com"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"658e9007-cea3-48f9-b1e7-68550d244b6c","name":"200 — Entries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.wauldo.com/v1/memory/default?limit=10&offset=0","host":["https://api.wauldo.com"],"path":["v1","memory","default"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"entries\": [{\"key\": \"user_preference\", \"value\": \"prefers email over phone\", \"tags\": [\"preference\"]}],\n  \"total\": 1\n}"}],"_postman_id":"d8e358e0-95ea-4b82-999f-cd7580440efa"},{"name":"Get Entry","id":"bc9b9174-3a72-44f4-bf18-69b88280caf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/memory/default/YOUR_KEY","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","memory","default","YOUR_KEY"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"8dfb4069-f77f-4f3c-af97-08cfdbca1e07","name":"200 — Entry","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/memory/default/YOUR_KEY"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"key\": \"user_preference\",\n  \"value\": \"prefers email over phone\",\n  \"tags\": [\"preference\", \"contact\"],\n  \"updated_at\": \"2026-04-12T10:00:00Z\"\n}"}],"_postman_id":"bc9b9174-3a72-44f4-bf18-69b88280caf4"},{"name":"Search Memory","id":"4bfcc387-c254-4e99-8e2c-136329747205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"query\": \"contact preference\",\n  \"limit\": 5\n}"},"url":"https://api.wauldo.com/v1/memory/default/search","description":"<p>Lexical search within a namespace. Returns entries ranked by relevance.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","memory","default","search"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"d1bcd245-dc93-49fa-88b1-73930f8a7f51","name":"200 — Results","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"query\": \"contact preference\",\n  \"limit\": 5\n}"},"url":"https://api.wauldo.com/v1/memory/default/search","description":"Lexical search within a namespace. Returns entries ranked by relevance."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"results\": [{\"key\": \"user_preference\", \"value\": \"prefers email over phone\", \"score\": 0.85}]\n}"}],"_postman_id":"4bfcc387-c254-4e99-8e2c-136329747205"},{"name":"Delete Entry","id":"5cd5c958-dcca-4dd8-a171-b0c9b3044798","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/memory/default/YOUR_KEY","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","memory","default","YOUR_KEY"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"bd5f6687-098b-496b-b06b-15d5994b82db","name":"200 — Deleted","originalRequest":{"method":"DELETE","header":[],"url":"https://api.wauldo.com/v1/memory/default/YOUR_KEY"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"deleted\": true\n}"}],"_postman_id":"5cd5c958-dcca-4dd8-a171-b0c9b3044798"}],"id":"8c970d7d-3998-43ab-a317-ac048dd8821f","description":"<p>Long-term key-value memory with namespace isolation. Store preferences, conversation history, or any structured data per tenant.</p>\n<p>Supports lexical search within a namespace.</p>\n","_postman_id":"8c970d7d-3998-43ab-a317-ac048dd8821f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"A2A (Agent-to-Agent)","item":[{"name":"Invoke Agent","id":"815b4bf5-cb9f-4b43-97c1-25ba31e8564d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"Summarize the latest support tickets\",\n  \"context\": {\"caller_agent\": \"manager-bot\"}\n}"},"url":"https://api.wauldo.com/v1/a2a/YOUR_AGENT_ID","description":"<p>Invoke an agent from another agent or external system. Supports passing caller context for tracing.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","a2a","YOUR_AGENT_ID"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"208b0380-2b95-4b99-9977-3b8ea810316b","name":"200 — Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"input\": \"Summarize the latest support tickets\",\n  \"context\": {\"caller_agent\": \"manager-bot\"}\n}"},"url":"https://api.wauldo.com/v1/a2a/YOUR_AGENT_ID","description":"Invoke an agent from another agent or external system. Supports passing caller context for tracing."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"output\": \"There are 3 open support tickets this week...\",\n  \"verification\": {\"verdict\": \"SAFE\", \"trust_score\": 0.88}\n}"}],"_postman_id":"815b4bf5-cb9f-4b43-97c1-25ba31e8564d"}],"id":"82620708-456a-4d13-8105-b6551efeddde","description":"<p>Invoke an agent from another agent. Enables agent chaining and delegation.</p>\n","_postman_id":"82620708-456a-4d13-8105-b6551efeddde","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"MCP over HTTP","item":[{"name":"List Tools","id":"a435ff05-b02a-43d5-acc3-6f6d734ecd36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.wauldo.com/mcp/v1/tools/list","description":"<p>List all available MCP tools with their input schemas.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["mcp","v1","tools","list"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"8a0de628-6127-4699-984a-4ba0f25549f3","name":"200 — Tools","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.wauldo.com/mcp/v1/tools/list","description":"List all available MCP tools with their input schemas."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"tools\": [\n    {\"name\": \"web_search\", \"description\": \"Search the web\", \"inputSchema\": {\"type\": \"object\", \"properties\": {\"query\": {\"type\": \"string\"}}}},\n    {\"name\": \"calculator\", \"description\": \"Evaluate math expressions\"}\n  ]\n}"}],"_postman_id":"a435ff05-b02a-43d5-acc3-6f6d734ecd36"},{"name":"Call Tool","id":"e2ae7539-3273-44e4-af40-40a5fa43523a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"calculator\",\n  \"arguments\": {\"expression\": \"2 + 2\"}\n}"},"url":"https://api.wauldo.com/mcp/v1/tools/call","description":"<p>Execute an MCP tool with the given arguments.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["mcp","v1","tools","call"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"84dbfa0e-7a85-473f-a4fc-bbe34873352b","name":"200 — Result","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"calculator\",\n  \"arguments\": {\"expression\": \"2 + 2\"}\n}"},"url":"https://api.wauldo.com/mcp/v1/tools/call","description":"Execute an MCP tool with the given arguments."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"content\": [{\"type\": \"text\", \"text\": \"4\"}]\n}"}],"_postman_id":"e2ae7539-3273-44e4-af40-40a5fa43523a"}],"id":"655fa1ff-8dd2-423f-8ae3-2b058ea7e953","description":"<p>Model Context Protocol — list and call tools via HTTP. Compatible with MCP-enabled AI agents.</p>\n","_postman_id":"655fa1ff-8dd2-423f-8ae3-2b058ea7e953","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Analytics & Insights","item":[{"name":"Insights (ROI)","id":"4fdce23a-051b-4397-9288-34c69c806f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/insights","description":"<p>ROI metrics: total requests, token savings, cost reduction.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","insights"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"44b423de-cf4e-40ac-b41b-ec5e3d727de1","name":"200 — Insights","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/insights","description":"ROI metrics: total requests, token savings, cost reduction."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"total_requests\": 1842,\n  \"tokens\": {\n    \"baseline_total\": 2450000,\n    \"real_total\": 1890000,\n    \"saved_total\": 560000,\n    \"saved_percent_avg\": 22.8\n  },\n  \"cost\": {\"estimated_usd_saved\": 1.12}\n}"}],"_postman_id":"4fdce23a-051b-4397-9288-34c69c806f8d"},{"name":"Analytics (Usage & Cache)","id":"b73847a4-ea9e-4e97-ad1c-d76a0385afc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/analytics?minutes=60","description":"<p>Cache performance, token savings, and cost tracking for a time window.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","analytics"],"host":["https://api.wauldo.com"],"query":[{"key":"minutes","value":"60"}],"variable":[]}},"response":[{"id":"ba262c55-4e6a-4fd8-b95a-eebf4f30cc25","name":"200 — Analytics","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.wauldo.com/v1/analytics?minutes=60","host":["https://api.wauldo.com"],"path":["v1","analytics"],"query":[{"key":"minutes","value":"60"}]},"description":"Cache performance, token savings, and cost tracking for a time window."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"cache\": {\"total_requests\": 500, \"cache_hit_rate\": 0.33, \"avg_latency_ms\": 180.5, \"p95_latency_ms\": 450.0},\n  \"tokens\": {\"total_saved\": 27000, \"avg_savings_percent\": 21.6},\n  \"uptime_secs\": 86400\n}"}],"_postman_id":"b73847a4-ea9e-4e97-ad1c-d76a0385afc5"},{"name":"Traffic (Per-Tenant)","id":"54aedf0f-00a5-4798-9fc2-abb52f1ae739","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/analytics/traffic","description":"<p>Per-tenant traffic monitoring: requests, tokens, success rate, latency.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["v1","analytics","traffic"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"bd151ef3-6d93-43e8-a524-bba246c21d70","name":"200 — Traffic","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/v1/analytics/traffic","description":"Per-tenant traffic monitoring: requests, tokens, success rate, latency."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"total_requests_today\": 3200,\n  \"top_tenants\": [{\"tenant_id\": \"user_abc\", \"requests_today\": 850, \"success_rate\": 0.98, \"avg_latency_ms\": 210}],\n  \"error_rate\": 0.02,\n  \"avg_latency_ms\": 180\n}"}],"_postman_id":"54aedf0f-00a5-4798-9fc2-abb52f1ae739"}],"id":"17a89ea4-2e92-465e-928f-3663a9feccf7","description":"<p>Monitor usage, token savings, cache performance, and per-tenant traffic.</p>\n","_postman_id":"17a89ea4-2e92-465e-928f-3663a9feccf7","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}},{"name":"Health","item":[{"name":"Health Check","id":"ed388b8a-b9e7-4bfb-b9c2-4b4515eeab5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.wauldo.com/health","description":"<p>API health check. No authentication required.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}},"urlObject":{"path":["health"],"host":["https://api.wauldo.com"],"query":[],"variable":[]}},"response":[{"id":"c27ed540-5b4e-4798-904a-263b016db153","name":"200 — Healthy","originalRequest":{"method":"GET","header":[],"url":"https://api.wauldo.com/health","description":"API health check. No authentication required."},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ok\",\n  \"version\": \"1.9.0\",\n  \"redis\": \"connected\",\n  \"uptime_seconds\": 86400\n}"}],"_postman_id":"ed388b8a-b9e7-4bfb-b9c2-4b4515eeab5c"}],"id":"227f6f60-29d0-4d9b-b054-553b6dc0163b","_postman_id":"227f6f60-29d0-4d9b-b054-553b6dc0163b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]},"isInherited":true,"source":{"_postman_id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","id":"1936d71a-c3c1-47b9-8b90-dbcebc94ef6d","name":"Wauldo API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-RapidAPI-Key"},{"key":"value","value":"YOUR_RAPIDAPI_KEY"}]}},"variable":[{"id":"03d9f6e4-64e7-40c6-b1e3-365486af747a","key":"base_url","value":"https://api.wauldo.com"},{"id":"49384210-9c21-4f5d-b426-c6b414d38d54","key":"rapidapi_key","value":"YOUR_RAPIDAPI_KEY"},{"id":"44b8a3b1-7fe5-4bad-9b4e-6a799bb20527","key":"document_id","value":"YOUR_DOCUMENT_ID"},{"id":"380879be-cc5a-4070-a626-b7a4c65f1e74","key":"collection_id","value":"YOUR_COLLECTION_ID"},{"id":"4f3b6bca-7a60-4a89-a805-207742891f7c","key":"task_id","value":"YOUR_TASK_ID"},{"id":"522682dc-3b58-4115-8f2d-5d53748938e9","key":"agent_id","value":"YOUR_AGENT_ID"},{"id":"c88e80a6-c8e6-4575-a7d2-852eb02bd693","key":"namespace","value":"default"},{"id":"7e9673db-807d-4823-b2c2-cb0938c027f3","key":"key","value":"YOUR_KEY"}]}