Shortcut to body area
  • Published : 2025.08.26
  • Edicited : 2025.10.20

API Overview

Visit Seoul standard content is available in multiple languages.
When retrieving the content list, you can use lang_code_id to retrieve content in a specific language.
This API also provides a list of available language codes. Since the language code does not change frequently, it can be cached for over 24 hours for long-term use.

Request Method

HTTP Request
GET /api/v1/code/lang
Host: api-call.visitseoul.net
VISITSEOUL-API-KEY: [Your issued API key]
Accept: application/json;charset=UTF-8
cURL Example
curl -X 'GET’ \
  'https://api-call.visitseoul.net/api/v1/code/lang' \
  -H 'Accept: application/json;charset=UTF-8' \
  -H 'VISITSEOUL-API-KEY: [Your issued API key]'

Parameters: None (returns all language code information )

Response Structure

Successful Response (200)
{
  "data": [
    {
      "code_id": "ko",
      "code_nm": "Korean"
    },
    {
      "code_id": "en",
      "code_nm": "English"
    },
    {
      "code_id": "ja",
      "code_nm": "Japanese"
    }
  ],
  "result_code": 200,
  "result_message": "OK"
}
Response Field Descriptions
Field Name,Type,Description
Field Name Type Description
code_id string Language code
code_nm string Language code name (in English)
"
처음으로 이동