Skip to main content
AI Studio  add-on for Spider.
Directories & Listings
kompass.com

Kompass Scraper

Extract global B2B company profiles, product catalogs, export data, and industry classifications from Kompass directories. Built on spider-browser .

Get started Docs
target
kompass.com
success rate
99.9%
latency
~4ms
POST /fetch/kompass.com/
return_format
curl -X POST https://api.spider.cloud/fetch/kompass.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://kompass.com/",
  "status": 200,
  "data": {
    "company_name": "string",
    "industry": "string",
    "products": "string",
    "employee_count": "string",
    "revenue_range": "string",
    "country": "string",
    "contact": "string",
    "website": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from kompass.com with a single POST. AI-resolved selectors, cached on the first call.

kompass-scraper.ts
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.kompass.com/searchCompanies?text=manufacturing&localizationCode=US");
await page.content();

const data = await page.extractFields({
  name: ".company-name a",
  industry: ".company-activity",
  location: ".company-location",
  employees: ".company-employees",
  products: ".company-products",
  contact: ".company-contact",
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Company nameIndustryProductsEmployee countRevenue rangeCountryContactWebsite
Data

Business intelligence

Extract company profiles, contacts, and industry data from kompass.com.

Pagination

Directory crawling

Navigate category trees and paginated business directories automatically.

Scale

Bulk enrichment

Process thousands of business profiles for lead generation datasets.

Related

More Directories & Listings scrapers.

Start

Start scraping kompass.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.