Skip to main content
POST
/
v2
/
cbc
Company B2B or B2C Checker API
curl --request POST \
  --url https://api.cufinder.io/v2/cbc \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "<string>"
}
'

Common Use Cases

A company’s business model decides how you should sell to it, so it pays to sort accounts early.
  • Lead Routing: Sending B2B and B2C leads down the right sales playbook automatically.
  • List Segmentation: Splitting prospect lists by business model before outreach.
  • Ad Targeting: Tailoring messaging and channels to the audience type.
  • Data Enrichment: Tagging CRM records with a business-model field for filtering.
  • Market Research: Profiling a market by its mix of B2B and B2C players.
Credit usage is 3 per record found.

Attributes

url
string
required
Company URL

Response

{
    "status": 1,
    "data": {
        "confidence_level": 99,
        "query": "amazon.com",
        "business_type": "B2C",
        "credit_count": 30
    }
}

Company B2B or B2C Checker API Typescript SDK

 import { Cufinder } from '@cufinder/cufinder-ts';

// Initialize the client
const client = new Cufinder('your-api-key-here');

// Initialize with more options
const client = new Cufinder('your-api-key-here', { timeout: 60000 });

const result = await client.cbc('stripe.com')
console.log(result);

Company B2B or B2C Checker API Python SDK

from cufinder import Cufinder

# Initialize the client
client = Cufinder('your-api-key-here')

# Initialize with more options
client = Cufinder('your-api-key-here', timeout=60)

result = client.cbc('stripe.com')
print(result)

Company B2B or B2C Checker API Go SDK

package main

import (
    "fmt"
    "log"
    
    "github.com/cufinder/cufinder-go"
)

func main() {
    // Initialize the client
    sdk := cufinder.NewSDK("your-api-key-here")
    
    // Initialize with more options
    sdk := cufinder.NewSDKWithConfig(cufinder.ClientConfig{
        APIKey:     "your-api-key-here",
        BaseURL:    "https://api.cufinder.io/v2",
        Timeout:    60 * time.Second,
        MaxRetries: 3,
    })
}
result, err := sdk.CBC("stripe.com")
if err != nil {
    log.Fatal(err)
}
fmt.Println(result)

Company B2B or B2C Checker API Ruby SDK

require 'cufinder_ruby'

# Initialize the client
client = Cufinder::Client.new(api_key: 'your-api-key-here')

# Initialize with more options
client = Cufinder::Client.new(
    api_key: 'your-api-key-here',
    timeout: 60,
    max_retries: 3
)

result = client.cbc(url: "stripe.com")
puts result

Company B2B or B2C Checker API Rust SDK

use cufinder_rust::CufinderSDK;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Initialize the client
    let sdk = CufinderSDK::new("your-api-key-here".to_string())?;
    
    // Initialize with more options
    let sdk = CufinderSDK::with_config(ClientConfig {
        api_key: "your-api-key-here".to_string(),
        base_url: "https://api.cufinder.io/v2".to_string(),
        timeout: Duration::from_secs(60),
        max_retries: 3,
    })?;
    
    Ok(())
}

let result = sdk.cbc("stripe.com").await?;
println!("{:?}", result);

Company SaaS Checker

Check whether a company is a SaaS business.

Company Tech Stack Finder

List the technologies a company uses.

Company Enrichment

Enrich a company with full firmographics.

Company Search

Search companies with multiple filters.