Own the Data.
Unlimited Lookups.
Download the complete website categorization database. Self-host for unlimited lookups, zero latency, and complete privacy. Includes 99.4M+ categorized domains (all with categories), sourced from our crawl of 636M+ domains and 174M+ active websites.
Why Self-Host?
Take full control of your website categorization infrastructure.
Microsecond Latency
Perform categorization lookups locally on your server. Remove network round-trips and achieve lookup speeds of under 1ms. Ideal for high-frequency applications.
Complete Privacy
Your domain queries never leave your infrastructure. Perfect for strict compliance requirements (GDPR, CCPA) and sensitive applications.
Unlimited Lookups
No rate limits, no quotas, no overage fees. Perform billions of categorization lookups per day for a flat one-time database price.
Simple, Transparent Pricing
Get the complete database as a one-time purchase. Perfect for self-hosting and unlimited lookups.
Perfect for one-time projects and long-term use.
- Complete Database (99.4M+ categorized domains)
- CSV & SQL Formats
- Commercial License
- Unlimited Lookups
- Country Data
- Priority Support
Enterprise API
Need an enterprise API with no rate limits?
Contact us for custom pricing and dedicated support.
[email protected]Enterprise ROI Calculator
Calculate your potential savings by self-hosting our database instead of using per-request API pricing.
Enterprise customers processing millions of domains save significantly while gaining instant access without rate limits or latency concerns.
Industry Standard Formats
We provide data in formats that integrate seamlessly with your existing stack. Whether you use SQL databases or CSV import pipelines.
SQL Dump Format
Complete SQL dump ready for import into MySQL, PostgreSQL, or any SQL-compatible database. Includes schema and all data.
CSV Format
Human-readable, comma-separated values. Perfect for importing into databases, data analysis tools, or custom pipelines.
CREATE TABLE website_categories (
domain VARCHAR(255) PRIMARY KEY,
category VARCHAR(100),
last_updated TIMESTAMP
);
SELECT category, COUNT(*) as count
FROM website_categories
GROUP BY category
ORDER BY count DESC;