Placekey

Placekey is a free, universal identifier for any physical place, designed to make it easy to join and match address and point-of-interest data across disparate datasets. The Placekey API resolves an address or latitude/longitude into a single Placekey, supporting both single and bulk (up to 100 per batch) lookups for address matching, deduplication, and data enrichment.

2 APIs 0 Features
LocationGeocodingAddress MatchingIdentifiersPOI

APIs

Placekey Lookup API

Resolves a single address, point-of-interest, or latitude/longitude coordinate pair into a universal Placekey identifier via POST /placekey, using the apikey header for authenti...

Placekey Bulk Lookup API

Resolves up to 100 queries per request into Placekey identifiers via POST /placekeys, with an optional per-query query_id echoed back; all queries in a batch must share the same...

Collections

Pricing Plans

Placekey Plans Pricing

4 plans

PLANS

Rate Limits

Placekey Rate Limits

4 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Placekey API
  version: '1.0'
request:
  auth:
    type: apikey
    key: apikey
    value: '{{apikey}}'
    in: header
items:
- info:
    name: Lookup
    type: folder
  items:
  - info:
      name: Look up a single Placekey
      type: http
    http:
      method: POST
      url: https://api.placekey.io/v1/placekey
      headers:
      - key: apikey
        value: '{{apikey}}'
      - key: Content-Type
        value: application/json
      body:
        type: json
        data: "{\n  \"query\": {\n    \"latitude\": 37.7371,\n    \"longitude\": -122.44283\n  }\n}"
    docs: Resolves a single address, POI, or latitude/longitude pair into a Placekey identifier. Authenticate with the apikey
      header.
- info:
    name: Bulk
    type: folder
  items:
  - info:
      name: Look up Placekeys in bulk
      type: http
    http:
      method: POST
      url: https://api.placekey.io/v1/placekeys
      headers:
      - key: apikey
        value: '{{apikey}}'
      - key: Content-Type
        value: application/json
      body:
        type: json
        data: "{\n  \"queries\": [\n    {\n      \"query_id\": \"0\",\n      \"street_address\": \"1543 Mission Street, Floor\
          \ 3\",\n      \"city\": \"San Francisco\",\n      \"region\": \"CA\",\n      \"postal_code\": \"94105\",\n     \
          \ \"iso_country_code\": \"US\"\n    },\n    {\n      \"query_id\": \"1\",\n      \"latitude\": 37.7371,\n      \"\
          longitude\": -122.44283,\n      \"iso_country_code\": \"US\"\n    }\n  ]\n}"
    docs: Resolves up to 100 queries per request into Placekey identifiers. All queries in a batch must share the same iso_country_code;
      an optional query_id is echoed back.