bluefield
Research agents

Read and synthesize hundreds of sources

Feed live web content into your RAG pipeline in minutes. Bluefield handles the fetching, rendering, and cleaning so your agent only sees the signal.

Batch-scrape sources and insert into a vector store

import { BlueFieldsClient } from '@bluefields/sdk';

const bf = new BlueFieldsClient({ apiKey: process.env.BF_KEY });

const { results } = await bf.batchScrape(urls, {
  formats: ['markdown'],
});

for (const result of results) {
  await vectorStore.insert(result.markdown);
}

What you need to get started

A Bluefield API keyThe TypeScript SDK or curlA free account