Lookup by Placekey

Submit the Placekey of a location and get the location details back. Generate a Placekey of the desired location from Placekey.io or use the response from another query type. You may request attributes from SafeGraph Core, Geometry, or Patterns data sets in the response.

Request Parameters: Placekey

For Placekey lookup, the placekey value is needed as an input argument to retrieve details of a POI.

ParameterDescription
placekeyGenerated Placekey of a location
query {
  lookup(placekey: "Placekey value"){
    Place...

Example

query {
  lookup(placekey: "222-223@5x4-4b6-mff") {
    safegraph_core {
      placekey
      latitude
      longitude
      street_address
      city
      region
      postal_code
      iso_country_code
      parent_placekey
      location_name
      brands {
        brand_id
        brand_name
      }
      top_category
      sub_category
      naics_code
      phone_number
      open_hours
      category_tags
      opened_on
      closed_on
      tracking_closed_since
      geometry_type
    }
  }
}
{
  "data": {
    "lookup": {
      "safegraph_core": {
        "placekey": "222-223@5x4-4b6-mff",
        "latitude": 47.620579,
        "longitude": -122.349186,
        "street_address": "400 Broad St",
        "city": "Seattle",
        "region": "WA",
        "postal_code": "98109",
        "iso_country_code": "US",
        "parent_placekey": null,
        "location_name": "Space Needle",
        "brands": [],
        "top_category": "Museums, Historical Sites, and Similar Institutions",
        "sub_category": "Historical Sites",
        "naics_code": 712120,
        "phone_number": null,
        "open_hours": "{ \"Mon\": [[\"10:00\", \"20:00\"]], \"Tue\": [[\"10:00\", \"20:00\"]], \"Wed\": [[\"10:00\", \"20:00\"]], \"Thu\": [[\"10:00\", \"20:00\"]], \"Fri\": [[\"10:00\", \"20:00\"]], \"Sat\": [[\"10:00\", \"20:00\"]], \"Sun\": [[\"10:00\", \"20:00\"]] }",
        "category_tags": [],
        "opened_on": null,
        "closed_on": null,
        "tracking_closed_since": "2019-07-01",
        "geometry_type": "POLYGON"
      }
    }
  },
  "extensions": {
    "row_count": 1,
    "version_date": "1635494405__2021_10"
  }
}

Use the GraphiQL Explorer to adjust the above lookup and see what else you can find out about this given POI.