한 프로젝트에 업로드 된 모든 플레이스를 조회하기 위해 다음과 같은 API를 사용합니다.
📍 GET /open-api/v1/place/list
Request Header
| Key | Value | Description |
|---|---|---|
| api-key | {YOUR_API_Key} |
Query Parameter
| Key | Value | Description |
|---|---|---|
| projectId | {YOUR_Project_ID} | 찾고자하는 Project의 고유 ID |
Response Body
200
[
{
"id": 1,
"placeAreaUid": "A01",
"name": "Place 1",
"description": "description",
"createDate": "2025-07-16 10:49:44",
"updateDate": "2025-07-16"
},
{
"id": 2,
"placeAreaUid": "A02",
"name": "Place 2",
"description": "description",
"createDate": "2025-07-16 10:49:52",
"updateDate": "2025-07-16"
}
]
400
{
"error": "Invalid request"
}
cURL
curl --location 'https://space.api-freegrow.com/open-api/v1/place/list?projectId=1'
--header 'api-key: {YOUR_API_KEY}'
관련 안내서
- API 공통 가이드
- Place UID별 Details 호출
- Place UID별 Details 수정
- Project geojson 호출
- 층 별 geojson 호출
- Place별 map color 수정
서비스 사용법이 궁금하다면 Growspace Studio 가이드 바로가기
