🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/location/geoCode \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"address": "1600 Pennsylvania Avenue NW, Washington, DC"
}
'{
"error": true,
"errorMsg": "<string>",
"latitude": 38.8977,
"longitude": -77.0365,
"warningMsg": "<string>"
}Get the latitude and longitude of an address
curl --request POST \
--url https://api2.rhombussystems.com/api/location/geoCode \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"address": "1600 Pennsylvania Avenue NW, Washington, DC"
}
'{
"error": true,
"errorMsg": "<string>",
"latitude": 38.8977,
"longitude": -77.0365,
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for getting the latitude and longitude of an address.
Address to geocode
"1600 Pennsylvania Avenue NW, Washington, DC"
OK
Response object containing the latitude and longitude of an address.
Was this page helpful?