# 2️⃣ Place UID별 Details 호출

##

## 📍<mark style="color:red;">**`GET`**</mark>  `/open-api/v1/place/{id}`

#### Request Header

| Key     | Value            | Description |
| ------- | ---------------- | ----------- |
| api-key | {YOUR\_API\_Key} |             |

#### Path Parameter

| Key | Value  | Description       |
| --- | ------ | ----------------- |
| id  | Number | 찾고자하는 플레이스의 고유 번호 |

#### Response Body

{% tabs %}
{% tab title="200" %}

```json
{
"id": 1,
"placeAreaUid": "A01",
"image": {
"id": 11,
"type": "place",
"image": [
{
"id": 11,
"url": "https://firebasestorage.googleapis.com/v0/b/grow-maps-platform.appspot.com/o/project_thumbnail%2Fd6a71758-8d1b-4e92-a434-8f866066454b.webp?alt=media"
}
]
},
"createDate": "2025-07-16 10:49:44",
"updateDate": "2025-07-16",
"trn": [
{
"language": "def",
"name": "Place 1",
"description": "description"
}
],
"category": "Main category",
"subCategory": "Sub category"
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}

#### cURL

```json
curl --location 'https://space.api-freegrow.com/open-api/v1/place/1' \
--header 'api-key: {YOUR_API_KEY}’
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://freegrow-1.gitbook.io/product-docs-kr/ko-growspace-studio-api/place/2-place-uid-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
