Automate academic and business research workflows with AI-powered search, extraction, and synthesis.
const papers = await client.search({
query: "transformer architecture attention mechanism research",
maxResults: 30
})
const summaries = await client.batchScrape(
papers.organic.slice(0, 10).map(p => ({
url: p.link,
extractSchema: {
title: "string",
abstract: "string",
methodology: "string",
findings: "string[]"
}
}))
)