API Overview
The content list API of the Visit Seoul API is a core service that systematically provides tourism information about Seoul.
This API allows you to search and retrieve a wide range of tourism content in Seoul, including attractions, restaurants, accommodations, shopping, and festivals, filtered by category, language, or keyword.
Request Method
HTTP Request
POST /api/v1/contents/list
Host: api-call.visitseoul.net
VISITSEOUL-API-KEY: [Your issued API key]
Accept: application/json;charset=UTF-8
cURL Example
curl -X 'POST' \
'https://api-call.visitseoul.net/api/v1/contents/list' \
-H 'Accept: application/json;charset=UTF-8' \
-H 'VISITSEOUL-API-KEY: [Your issued API key]' \
-H 'Content-Type: application/json;charset=UTF-8' \
-d '{
"com_ctgry_sn": "Cg1x6l1",
"lang_code_id": "en",
"keyword": "Exhibition",
"sort_type": "latest",
"page_no": 1
}'
The content list API can include the following parameters, all of which are optional.
Response Structure
Successful Response (200)
{
"data": [
{
"cid": "ENPnd5dx1",
"lang_code_id": "en",
"com_ctgry_sn": "Cg1x6l1",
"cate_depth": [
" Culture",
"Cultural Facilities"
],
"multi_lang_list": "ko:KOPsrn1p5,en:ENPsrn1p5,ja:JPPsrn1p5,zh-CN:CNPsrn1p5,zh-TW:TCPsrn1p5",
"main_img": "https://image_path/image_file",
"post_sj": "Yoojin Lee Solo Exhibition 《Microclimate Salon – A Dependent Solo Exhibition》",
"sumry": "An experience that awakens the \"microclimate sense\" through encounters with small lifeforms\r\n",
"creat_dt_text": "2025.05.26",
"updt_dt_text": "2025.05.30"
}
],
"paging": {
"page_no": 1,
"page_size": 50,
"total_count": 11
},
"result_code": 200,
"result_message": "OK"
}
Response Field Descriptions