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

Lusha Scraper

Extract B2B contact enrichment data, direct dial numbers, company profiles, and decision-maker details from Lusha. Built on spider-browser .

Get started Docs
target
lusha.com
success rate
99.9%
latency
~4ms
POST /fetch/lusha.com/
return_format
curl -X POST https://api.spider.cloud/fetch/lusha.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://lusha.com/",
  "status": 200,
  "data": {
    "contact_name": "string",
    "job_title": "string",
    "company": "string",
    "direct_phone": "string",
    "email": "string",
    "location": "string",
    "industry": "string"
  }
}
Quick start

Extract data in minutes.

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

lusha-scraper.ts
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.lusha.com/company-search/");
await page.content(10000);

const data = await page.extractFields({
  title: "h1",
  description: ".hero-description p",
  features: ".feature-card h3",
  benefits: ".benefits-list li",
  integrations: ".integration-logo img[alt]",
  pricing: ".pricing-card .price",
  cta: ".cta-button",
});

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

Fields you can pull.

Contact nameJob titleCompanyDirect phoneEmailLocationIndustry
Data

Business intelligence

Extract company profiles, contacts, and industry data from lusha.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 lusha.com.

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