Try searching for a business by name. The widget will suggest verified businesses from Google.
// Initialize the widget
const finder = new BusinessFinder({
inputId: 'business_name',
apiEndpoint: 'api/find_business.php',
cityFieldId: 'city',
stateFieldId: 'state',
onSelect: function(business) {
console.log('Selected:', business);
}
});