Skip to main content
POST
/
v2
/
car
Company Revenue Finder API
curl --request POST \
  --url https://api.cufinder.io/v2/car \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "query": "<string>"
}
'

Common Use Cases

Revenue is one of the clearest signals of account value, so it drives both prioritization and planning.
  • Lead Scoring: Prioritizing accounts by estimated revenue.
  • Segmentation: Tiering prospects into revenue bands for targeting.
  • Territory Planning: Balancing books of business by account value.
  • Data Enrichment: Adding a revenue estimate to every company record.
  • Market Sizing: Estimating the value of a segment or region.
Credit usage is 3 per record found.

Attributes

query
string
required
Company name or Company domain or Company LinkedIn URL

Response

{
    "status": 1,
    "data": {
        "confidence_level": 96,
        "query": "apple",
        "annual_revenue": "$383.3B",
        "credit_count": 9816
    }
}

Company Revenue Finder 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.car('apple');
console.log(result);

Company Revenue Finder 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.car('apple')
print(result)

Company Revenue Finder 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.CAR("apple")
if err != nil {
    log.Fatal(err)
}
fmt.Println(result)

Company Revenue Finder 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.car(query: 'apple')
puts result

Company Revenue Finder 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.car("apple").await?;
println!("{:?}", result);

Company Revenue Finder 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.car("apple").await?;
println!("{:?}", result);

Company Employee Count

Get a company’s current employee count.

Company Fundraising

Retrieve funding rounds and investors.

Company Enrichment

Enrich a company with full firmographics.

Company Search

Search companies with multiple filters.