Lấy danh sách thành phố
Lấy danh sách các thành phố và các mã city_id
của từng tỉnh thành mà Ahamove đang hoạt động tại Việt Nam
HTTP Request
- cURL
- JavaScript
curl --location 'https://partner-apistg.ahamove.com/v3/cities?country_id=VN' \
--header 'Authorization: Bearer <token>'
const myHeaders = new Headers();
myHeaders.append('Authorization', 'Bearer <token>');
const requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow',
};
fetch(
'https://partner-apistg.ahamove.com/v3/cities?country_id=VN',
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
HTTP Request
GET https://partner-apistg.ahamove.com/v3/cities?country_id=VN
Headers
Parameter | Giá trị | Yêu cầu | Mô tả |
---|---|---|---|
Authorization | Bearer <token> | Có | Token của người dùng |
Query Parameters
Parameter | Loại | Yêu cầu | Mô tả |
---|---|---|---|
country_id | String | Có | ID của quốc gia |
Response
JSON response example:
[
{
"_id": "HAN",
"name": "Ha Noi",
"name_vi_vn": "Hà Nội",
"country_id": "VN",
"level": 2.0
},
{
"_id": "SGN",
"name": "Ho Chi Minh City",
"name_vi_vn": "TP Hồ Chí Minh",
"country_id": "VN",
"level": 2.0
}
]
Status-Code: 200 OK