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

Common Use Cases

What a company says it stands for is useful context for any kind of personalized outreach.
  • Personalized Outreach: Referencing a company’s mission to warm up cold emails.
  • Account Research: Understanding what an account cares about before a call.
  • Messaging: Tailoring pitches to a company’s stated values.
  • Data Enrichment: Adding mission text to CRM records for context.
  • Market Research: Comparing how companies in a sector position themselves.
Credit usage is 3 per record found.

Attributes

url
string
required
company URL

Response

{
    "status": 1,
    "data": {
        "confidence_level": 94,
        "query": "openai.com",
        "mission_statement": "We believe our research will eventually lead to artificial general intelligence, a system that can solve human-level problems. Building safe and beneficial AGI is our mission.",
        "credit_count": 27
    }
}

Company Mission Statement 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.csc('stripe.com')
console.log(result);

Company Mission Statement 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.csc('stripe.com')
print(result)

Company Mission Statement 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.CSC("stripe.com")
if err != nil {
    log.Fatal(err)
}
fmt.Println(result)

Company Mission Statement 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.csc(url: "stripe.com")
puts result

Company Mission Statement 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.csc("stripe.com").await?;
println!("{:?}", result);

Company Snapshot

Get a quick company overview.

Company Enrichment

Enrich a company with full firmographics.

Company Tech Stack Finder

List the technologies a company uses.

Company Search

Search companies with multiple filters.