## Get feature by type and ID `$client->elements->retrieve(int id, string type): GeoJsonFeature` **get** `/api/v1/features/{type}/{id}` Get feature by type and ID ### Parameters - `type: string` - `id: int` ### Returns - `GeoJsonFeature` - `GeoJsonGeometry geometry` - `array properties` - `Type type` - `?string id` Feature identifier (type/osm_id) - `?int osmID` OpenStreetMap ID ### Example ```php elements->retrieve(0, type: 'type'); var_dump($geoJsonFeature); ```