Office addresses provide geographic context that field sales teams need for territory planning and in-person meetings. The Company Locations API returns verified business addresses including country, state, city, postal code, and street details from company queries with 95% confidence scores. Built for developers creating field sales and logistics tools, this RESTful endpoint delivers complete location data that power route planning, regional targeting, and local market analysis workflows across your sales stack.
import { Cufinder } from '@cufinder/cufinder-ts';// Initialize the clientconst client = new Cufinder('your-api-key-here');// Initialize with more optionsconst client = new Cufinder('your-api-key-here', { timeout: 60000 });const result = await client.clo('apple');console.log(result);
from cufinder import Cufinder# Initialize the clientclient = Cufinder('your-api-key-here')# Initialize with more optionsclient = Cufinder('your-api-key-here', timeout=60)result = client.clo('apple')print(result)