Children Lookup

The Children Lookup query allows you to submit the Placekey of a location and get the children back in a Basic Place Response.

This query supports pagination and requires Nesting Place Responses.

Placekey is a unique and persistent identifier for any physical place in the world. Learn more at Placekey.io.

ArgumentDescriptionExample
placekeyRequired. Stringzzw-222@5qk-kb7-7wk

In this example, we're requesting all of the child POI of the placekey for the Denver Airport.

{
  childrenLookup(placekey: "zzw-222@5qk-kb7-7wk")
  {
    places {
      locationName
      placekey
      address {
        streetAddress
        city
        region
        postalCode
        isoCountryCode
      }
    }
  }
}

The response returns back the requested data about the child places within the Denver Airport.

{
  "data": {
    "childrenLookup": {
      "places": [
        {
          "locationName": "Quest Business Center",
          "placekey": "zzy-22n@5qk-kb7-85f",
          "address": {
            "streetAddress": "8900 Pena Blvd Concourse B",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Ben & Jerry's",
          "placekey": "zzy-22k@5qk-kb7-7t9",
          "address": {
            "streetAddress": "8900 Pena Boulevard Concourse Level Center Court",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Qdoba Mexican Grill",
          "placekey": "zzy-22j@5qk-kb7-85f",
          "address": {
            "streetAddress": "8500 Pena Blvd. Concourse B",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Johnston & Murphy",
          "placekey": "zzy-22j@5qk-kb7-7t9",
          "address": {
            "streetAddress": "8900 Pena Boulevard Concourse B Center Court",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Tumi",
          "placekey": "zzy-22h@5qk-kb7-7t9",
          "address": {
            "streetAddress": "8900 Pena Blvd. Concourse B",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Peak News & Gifts",
          "placekey": "zzy-223@5qk-kb7-85f",
          "address": {
            "streetAddress": "8900 Pena Blvd Terminal B Gate B31",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "McDonald's",
          "placekey": "zzy-222@5qk-kb7-85f",
          "address": {
            "streetAddress": "Concourse B 8900 Pena Blvd",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Smashburger",
          "placekey": "zzw-224@5qk-kb7-85f",
          "address": {
            "streetAddress": "8500 Pena Blvd. Dia Concourse B",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Sunglass Hut",
          "placekey": "zzw-223@5qk-kb7-85f",
          "address": {
            "streetAddress": "8900 Pena Blvd # BM 2C",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        },
        {
          "locationName": "Chick-fil-A",
          "placekey": "zzw-222@5qk-kb7-85f",
          "address": {
            "streetAddress": "8500 Pena Blvd",
            "city": "Denver",
            "region": "CO",
            "postalCode": "80249",
            "isoCountryCode": "US"
          }
        }
      ]
    }
  },
  "extensions": {
    "row_count": 10
  }
}