-
Notifications
You must be signed in to change notification settings - Fork 1
산 검색
sovovy edited this page Sep 26, 2019
·
5 revisions
Method | URL | Description |
---|---|---|
GET | /mountain/search?query={query} | 산 검색 |
Content-Type : application/json
// status : 200
{
"message": "Success",
"data": {
"mountain_idx" : 1,
"mountain_name" : "북한산",
"mountain_altitude" : 2484,
"course" : [
{
"theme_name" : "혜진현무 등산코스",
"course_idx" : 1,
"course_name" : "산으로 코스",
"course_img" : "[url]"
},
{
"theme_name" : "초보자용 코스",
"course_idx" : 4,
"course_name" : "강으로 코스",
"course_img" : "[url]"
}
]
}
}
// status : 404
{
"message": "Not Found."
}