Credit usage is 0 per record found.
Request
curl --location 'https://api.cufinder.io/v2/nac' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: your-api-key-here' \
--data-urlencode 'company=google l.l.c'
{
"status": 1,
"data": {
"confidence_level": 96,
"query": "google l.l.c",
"company": "Google L.L.C",
"credit_count": 958
}
}
Company Name Normalizer 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.nac('google l.l.c')
console.log(result);
Company Name Normalizer 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.nac('google l.l.c')
print(result)
Company Name Normalizer 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.NAC("google l.l.c")
if err != nil {
log.Fatal(err)
}
fmt.Println(result)
Company Name Normalizer 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.nac(company: 'google l.l.c')
puts result
Company Name Normalizer 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.nac("google l.l.c").await?;
println!("{:?}", result);

