D&B Scraper
Spider read dnb.com in 143 ms without a browser and returned 65 lines of clean markdown, including sections like "AI Breaks Without a Trusted Foundation", "The Dun & Bradstreet MCP Server" and "One Context Layer for Every Business Decision".
## AI Breaks Without a Trusted FoundationMost enterprise AI falls short not because of the model or implementation — but because the underlying inputs are fragmented, difficult to validate, and hard to maintain over time. Dun & Bradstreet addresses this by providing a context layer — anchored in persistent identity and designed for traceability, governance, and real-world accuracy.* The D&B Commercial Graph provides a governed foundation that delivers verified business identity and continuously updated context into your workflows. Explore the D&B Commercial Graph* Dun & Bradstreet’s AI connectors deliver decision-ready business insight into the systems your teams already use. Plug D&B into Your Tools* Operationalize verified business context across compliance, procurement, finance sales, marketing, and data management. Explore AI for Your Team### The Dun & Bradstreet MCP ServerConnect AI agents directly to governed business insight — designed for auditability and reliable execution.## One Context Layer for Every Business DecisionPower every team across your business with verified context — so you can make more accurate decisions, manage risk, and drive growth across compliance, supplier risk, finance, sales, marketing, and data management.### ComplianceConfidently onboard and monitor third parties with auditable, explainable verification.### ProcurementGain end-to-end visibility into your supplier network — so you can detect risk earlier and respond faster.### FinanceStrengthen credit strategies and optimize cash flow with more timely, reliable financial signals.### DataUnify fragmented records into a single, reliable foundation — so your teams can operate with enterprise-wide clarity and consistency.### SalesFocus your teams on the accounts most likely to convert with clearer buying signals and account insights.### Marketing The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on dnb.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.dnb.com/business-directory/company-search.html?term=technology&page=1");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.dnb.com/business-directory/company-search.html?term=technology&page=1");
await page.content(10000);
const data = await page.evaluate(`(() => {
const companies = [];
document.querySelectorAll(".company-result, .search-result-item").forEach(el => {
const name = el.querySelector("h3 a, .company-name")?.textContent?.trim();
const location = el.querySelector(".company-location, .address")?.textContent?.trim();
const industry = el.querySelector(".company-industry, .sic-description")?.textContent?.trim();
const revenue = el.querySelector(".company-revenue, .sales")?.textContent?.trim();
if (name) companies.push({ name, location, industry, revenue });
});
return JSON.stringify({ total: companies.length, companies: companies.slice(0, 15) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What dnb.com costs to scrape.
The capture above cost $0.000189 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Directories & Listings scrapers.
Yellow Pages Scraper
Extract business listings, phone numbers, addresses, and customer reviews from Yellow Pages local directories.
White Pages Scraper
Extract people search results, phone lookups, address records, and background check summaries from White Pages.
Manta Scraper
Extract small business profiles, company revenue estimates, employee counts, and industry classifications from Manta.
Start scraping dnb.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.