Version: 202506
List sub areas
GET/openapi/2025-06/areas/:code/children
The Sub Area List API allows developers to fetch a comprehensive list of sub-areas within a specified area using its unique identifier. This endpoint supports retrieving specific fields based on the user’s request.
Request
Path Parameters
code stringrequired
Province ID
Query Parameters
no_cache string
Whether to skip cache
locale string
Locale code (e.g. en-US)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
typestring
Type
list object[]
List
codestring
Code
namestring
Name
zipstring
Postal or ZIP code
{
"code": "string",
"message": "string",
"data": {
"type": "string",
"list": [
{
"code": "string",
"name": "string",
"zip": "string"
}
]
}
}