<!--
{
  "availability" : [
    "MapKit JS: 5.78.1 - 6.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "MapKitJS",
  "identifier" : "/documentation/MapKitJS/PlaceLookup/getPlace2",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "MapKit JS"
    ],
    "preciseIdentifier" : "instm/mapkit.PlaceLookup/getPlace2"
  },
  "title" : "getPlace(id, callback, options)"
}
-->

# getPlace(id, callback, options)

Obtains a place using its identifier.

```
getPlace(
    id: string,
    callback: (error: Error | null, result: Place | null) => void,
    options?: PlaceLookupOptions,
): Promise<Place>;
```

## Parameters

`id`

The Place ID that refers to the [`Place`](/documentation/MapKitJS/Place) object to fetch.

`callback`

A callback function that is invoked with `error` and `data` parameters.

`options`

Options that can overwrite the same options set on the property or that you supplied to the [`PlaceLookup`](/documentation/MapKitJS/PlaceLookup) constructor. See [`PlaceLookupOptions`](/documentation/MapKitJS/PlaceLookupOptions).

## Return Value

A promise that resolves with a [`Place`](/documentation/MapKitJS/Place) on success.

## Discussion

For information about Places, see <doc://com.apple.documentation/documentation/MapKit/identifying-unique-locations-with-place-ids>.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)