Overview
Why wait for scraping when you can download ready-to-use datasets? Our database is updated weekly and contains millions of verified records across hundreds of industries. From HVAC contractors in New York to tech startups in Tokyo, get the data you need instantly.
Key Benefits
- Monthly updates ensuring 97–99% data accuracy.
- Filter by industry, size, location, and revenue.
- Instant download access for Pro and Lifetime members.
- Comprehensive metadata including VAT and registration numbers.
How It Works Step-by-Step
Streamlined workflow designed for maximum efficiency, speed, and accuracy.
Instant Faceted Search
Query across 200M+ global companies by industry, headcount, revenue bracket, and geographic region.
Verified Contact Verification
Access verified decision maker details including CEOs, Founders, Managing Directors, and Procurement leads.
Bulk Download Without Limits
Export whole industry segments or targeted local lists ready for cold outreach campaigns.
Live Data Sample
Real-time verified fields extracted directly by this tool
API Database Access
Powerful APIs to integrate business data into your workflow
Data Query
Query database with filters
/api/v1/database/query
Get all categories
/api/v1/database/categories
Export results to CSV
/api/v1/database/export/{query_id}
// Query business database
POST /api/v1/database/query
{
"category": "restaurants",
"location": {
"country": "US",
"state": "CA",
"cities": ["Los Angeles", "San Francisco"]
},
"filters": {
"revenue_range": ["1M-5M"],
"employee_count": [10, 50],
"year_established": { "min": 2010 }
},
"fields": [
"company_name",
"address",
"phone",
"email",
"revenue",
"employee_count"
],
"limit": 100
}
// Response
{
"query_id": "qry_abc123",
"total_matches": 15234,
"results": [
{
"id": "biz_12345",
"company_name": "Taco Loco",
"address": "456 Main St",
"city": "Los Angeles",
"state": "CA",
"phone": "+1 310-555-0199",
"email": "info@tacoloco.com",
"revenue": 2500000,
"employee_count": 25,
"year_established": 2015
}
]
}