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

Common Use Cases

When email alone falls flat, a verified company line gives reps another way to connect.
  • Sales Outreach: Adding a phone number so reps can call instead of only emailing.
  • CRM Enrichment: Filling empty phone fields across company records.
  • Lead Routing: Equipping call teams with a verified company line.
  • Verification: Confirming a company is reachable before outreach.
  • Data Hygiene: Replacing disconnected or outdated numbers.
Credit usage is 2 per record found.

Attributes

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

Response

{
    "status": 1,
    "data": {
        "confidence_level": 93,
        "query": "apple",
        "phones": [
            "+800046046",
            "+800554533",
            "+900150503"
        ],
        "credit_count": 9825
    }
}

Company Phone 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.ntp('apple');
console.log(result);

Company Phone 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.ntp('apple')
print(result)

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

Company Phone 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.ntp(company_name: 'apple')
puts result

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

Company Email Finder

Return verified role-based company emails.

Company Enrichment

Enrich a company with full firmographics.

LinkedIn Company URL Finder

Find a company’s LinkedIn page URL.

Phone Number Normalizer

Standardize phone numbers to a clean format.