Company websites are the foundation of B2B lead enrichment and outreach campaigns. The Company Name to Domain API transforms company names into verified website URLs with 94-98% accuracy, pulling from CUFinder’s database of 85M+ enriched profiles. Built for developers automating CRM enrichment and lead qualification, this RESTful endpoint returns official domain addresses with confidence scores that power data pipelines, webhook integrations, and real-time lookup systems across your sales stack.
Please note that when you set the country code, the results are limited to that country. For example, for the company name ‘Nestlé’ and the country ‘Switzerland’, we returned nestle.ch as a result.
import { Cufinder } from '@cufinder/cufinder-ts';// Initialize the clientconst client = new Cufinder('your-api-key-here');// Initialize with more optionsconst client = new Cufinder('your-api-key-here', { timeout: 60000 });const result = await client.cuf('cufinder', 'US');console.log(result)
from cufinder import Cufinder# Initialize the clientclient = Cufinder('your-api-key-here')# Initialize with more optionsclient = Cufinder('your-api-key-here', timeout=60)result = client.cuf('cufinder', 'US')print(result)