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.
Data Collection
Live data preview
Business Name
Category
Location
Status
Blue Bottle Coffee
Coffee & Cafes
San Francisco, CA
Verified
TechCorp Solutions
Technology
Austin, TX
Verified
Sunshine Dental
Healthcare
Miami, FL
Processing
Peak Fitness
Health & Wellness
Denver, CO
Verified
Urban Eats
Restaurant
Seattle, WA
Verified
Showing 5 of 200M+ records
API Database Access
Powerful APIs to integrate business data into your workflow
Data Query
Query database with filters
/api/v1/database/query
POST
Get all categories
/api/v1/database/categories
GET
Export results to CSV
/api/v1/database/export/{query_id}
GET
Example
// 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
}
]
}