1️⃣ Get Place UID List

To retrieve all places uploaded to a project, use the following 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}

The unique ID of the target project

Response Body

[
{
"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"
}
]

cURL

curl --location 'https://space.api-freegrow.com/open-api/v1/place/list?projectId=1' \
--header 'api-key: {YOUR_API_KEY}’

Last updated