Lấy thông tin chi tiết thành phố
- cURL
- JavaScript
curl -X GET \
'https://apistg.ahamove.com/v1/order/city_detail?city_id=SGN' \
-H 'cache-control: no-cache'
var requestOptions = {
method: 'GET',
redirect: 'follow'
};
fetch("https://apistg.ahamove.com/v1/order/city_detail?city_id=SGN", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
API này dùng để lấy thông tin chi tiết về một thành phố
HTTP Request
GET https://apistg.ahamove.com/v1/order/city_detail?city_id=<city_id>
or
GET https://apistg.ahamove.com/v1/order/city_detail?lat=<lat>&lng=<lng>
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
city_id | String | Có | Mã ID của thành phố |
lat | Number | Không | Vi đạo |
lng | Number | Không | Kinh độ |
Response
JSON response example:
{
"_id": "SGN",
"name": "Ho Chi Minh City",
"name_vi_vn": "TP Hồ Chí Minh",
"country_id": "VN",
"location": {
"type": "Point",
"coordinates": [106.6943626, 10.768451]
}
}
Status-Code: 200 OK
Các lỗi thường gặp
Mã lỗi | Nội dung | Mô tả |
---|---|---|
404 | Not Found | Không tìm thấy thành phố |
500 | Internal Server Error | Hệ thống của chúng tôi có lỗi xảy ra. Xin thử lại sau |
503 | Service Unavailable | Chúng tôi tạm thời đang không hoạt động để bảo trì. Xin vui lòng thử lại sau |