From e22f030a3eb648793cbc7b68c5707e19725c9407 Mon Sep 17 00:00:00 2001 From: George Pickett Date: Thu, 10 Sep 2026 15:51:42 -0700 Subject: [PATCH] Fix README Quick Start for current Search SDK --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2beb3c4..fec5077 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,9 @@ npm install parallel-web import Parallel from "parallel-web"; const client = new Parallel({ apiKey: process.env.PARALLEL_API_KEY }); -const result = await client.beta.search({ +const result = await client.search({ + mode: "advanced", + search_queries: ["AI startup funding rounds 2026", "AI startup funding announcements 2026"], objective: "Find the latest funding round announcements for AI startups in 2026", }); console.log(result.results);