
Research
/Security News
Malicious Chrome and Firefox Extensions Steal Crypto Traders’ Session and Wallet Data
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.
The official TypeScript SDK for turning websites into clean content, structured data, screenshots, search results, site maps, and brand profiles.
Documentation · Dashboard · GitHub
npm install berrycrawl
Create an API key in the Berrycrawl dashboard, set it as BERRYCRAWL_API_KEY, then:
import { Berrycrawl } from "berrycrawl";
const berrycrawl = new Berrycrawl({ apiKey: process.env.BERRYCRAWL_API_KEY });
const page = await berrycrawl.scrape({ url: "https://example.com" });
const page = await berrycrawl.scrape({
url: "https://example.com/pricing",
formats: ["markdown", "links"],
});
Crawls run as background jobs. The response contains the job ID you can use with the jobs API.
const job = await berrycrawl.crawl({
url: "https://example.com/docs",
limit: 50,
});
console.log(job.id);
const results = await berrycrawl.search({
query: "best headless browser libraries",
limit: 10,
});
const map = await berrycrawl.map({
url: "https://example.com",
search: "documentation",
});
const brand = await berrycrawl.brand.retrieve({
url: "https://stripe.com",
});
const extraction = await berrycrawl.extract({
urls: ["https://example.com/products"],
prompt: "Extract every product name, price, and description",
});
console.log(extraction.id);
import { BerrycrawlError } from "berrycrawl";
try {
await berrycrawl.scrape({ url: "https://example.com" });
} catch (error) {
if (error instanceof BerrycrawlError) {
console.error(error.statusCode, error.body);
}
throw error;
}
const berrycrawl = new Berrycrawl({
apiKey: process.env.BERRYCRAWL_API_KEY,
timeoutInSeconds: 90,
maxRetries: 3,
});
Apache 2.0. See LICENSE.
FAQs
Official TypeScript SDK for the Berrycrawl API
We found that berrycrawl demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.