Skip to content
Dashboard

Parallel joins the Vercel Agent Marketplace

Marketplace Team
import Parallel from "parallel-web";
const client = new Parallel({ apiKey: process.env.PARALLEL_API_KEY });
async function main() {
const search = await client.beta.search({
objective: "When was the United Nations established? Prefer UN's websites.",
search_queries: [
"Founding year UN",
"Year of founding United Nations"
],
max_results: 10,
excerpts: { max_chars_per_result: 10000 },
});
console.log(search.results);
}
main().catch(console.error);

Execute your first API call in minutes

Ready to deploy?