Targeting precision depends on knowing whether companies sell to businesses or consumers before you allocate outreach resources. The Company B2B or B2C Checker API analyzes domain signals across CUFinder’s 85M+ company database to classify whether a company operates a B2B or B2C business model, returning categorization labels with confidence scores and supporting indicators like customer type mentions, transaction patterns, and product positioning language. Built for sales automation platforms, market segmentation tools, and lead scoring systems, this RESTful endpoint delivers business model classification data—including mixed-model indicators, vertical market focus, and customer acquisition signals—that power qualified lead routing, personalized messaging strategies, and TAM calculation workflows across your revenue intelligence 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.cbc('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.cbc('stripe.com')print(result)