Phone numbers create direct lines to prospects that email alone can’t match. The Company Phone Finder API returns up to two verified business phone numbers from company names, domains, or LinkedIn URLs with 93% confidence scores. Built for developers building CRM enrichment and customer support tools, this RESTful endpoint delivers validated contact numbers that power outbound calling systems, data completion workflows, and multi-channel outreach campaigns across your sales stack.
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.ntp('apple');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.ntp('apple')print(result)