1 credit per call
Method
Input
string
required
The address string to parse
Output
string
Street number
string
Street name
string
City
string
State/province
string
Postal/ZIP code
string
Country
number
Latitude
number
Longitude
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Parse an address into structured components with geocoding
services.geo.parseAddress(params);
const parsed = await services.geo.parseAddress({
address: "1600 Amphitheatre Parkway, Mountain View, CA",
});
return `${parsed.city}, ${parsed.state}`;