Quick Start
Get a Placekey for an Address
curl --location 'https://api.placekey.io/v1/placekey' \
--header 'apikey: {{apikey}}' \
--header 'Content-Type: application/json' \
--data '{
"query": {
"street_address": "1543 Mission Street, Floor 3",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105",
"iso_country_code": "US",
"latitude": 37.7371,
"longitude": -122.44283
}
}'import requests
import json
url = "https://api.placekey.io/v1/placekey"
payload = json.dumps({
"query": {
"street_address": "1543 Mission Street, Floor 3",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105",
"iso_country_code": "US",
"latitude": 37.7371,
"longitude": -122.44283
}
})
headers = {
'apikey': '{{apikey}}',
'Content-Type': 'application/json'
}
response = requests.post(url, headers=headers, data=payload)
print(response.text)Get a Placekey for a POI
Get a Placekey for a Pair of Coordinates
Last updated