Quick Start

In order to make your first request you need an API key. You can find create your API key by logging into your self-service dashboard.

๐Ÿšง Need an API Key

If you need an API you can sign up for an account and get your key here.

Get a Placekey for an Address

To get started you can use the below query to get a Placekey for just an address.

Example Request:

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
  },

Example Response:

Get a Placekey for an POI

Get a Placekey for a POI, a specific physical location which someone may find interesting. Restaurants, retail stores, and grocery stores are all examples of Points-of-Interest. Since the phrase is a mouthful, Point-of-Interest is often abbreviated as 'POI'.

Example Request:

Example Response:

Get a Placekey for a pair of Coordinates

If you only have a pair of coordinates you can still get a placekey. The placekey will only contain the "where" part. If you need a refresher on the placekey structure and design visit this page.

Example Response:

Last updated