Knowing who buys from your competitors reveals targeting opportunities that firmographic filters alone cannot surface. The B2B Customers Finder API analyzes domain relationships across CUFinder’s 85M+ company database to identify verified business customers of any target company, returning customer lists with confidence scores, company profiles, and relationship indicators that expose competitive whitespace. Built for market intelligence platforms, competitive analysis tools, and partnership mapping systems, this RESTful endpoint delivers customer relationship data—including company size, industry, location, and technology stack—that power competitor displacement strategies, market expansion planning, and strategic partnership identification workflows across your revenue operations.
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.bcd('stripe.com');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.bcd('stripe.com')print(result)