CompanyGetHQAddressGoogleMaps@1
HQ Location Finder
Identifies and validates a company's headquarters location using Google Maps data.
Company Info
Location
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P Google Maps | Managed User | 1.5 credits |
Input Fields
companyName
string
Required
Output Fields
hqAddress
string
Code Example
const result = await fetch("https://api.pipe0.com/v1/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
pipes: [{
name: "CompanyGetHQAddressGoogleMaps@1",
// passing a config is optional
config: {
"inputFields": {
"companyName": {
"alias": ""
}
},
"outputFields": {
"hqAddress": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on