Skip to content

List Supported Languages

GET
/reference-data/language/list
curl --request GET \
--url https://api.wink.travel/reference-data/language/list \
--header 'Authorization: Bearer <token>'

Returns the complete list of languages the platform supports. Each language includes ISO 639-1/639-3 codes, ISO 3166-1 country codes, and localized display names in the target language. Derived from the platform configuration.

OK

Media type application/json
Array<object>

Represents a supported language with localized display names and language codes.

object
country

ISO 3166-1 alpha-2 country code.

string
""
displayCountry

Country name as displayed in the language represented by this object.

string
""
displayLanguage

The language name as it appears in the language represented by this object.

string
""
displayName

The full localized display name of the language.

string
""
displayScript

The script used by this language, displayed in the language itself.

string
""
displayVariant

Any variant designations displayed in the language.

string
""
iso3Country

ISO 3166-1 alpha-3 country code.

string
""
iso3Language

ISO 639-3 three-letter language code.

string
""
language

ISO 639-1 two-letter language code.

string
""
script

The script code for this language (e.g., ‘Thai’ for Thai script).

string
""
variant

Any variant designations for this language.

string
""
Example
[
{
"country": "TH",
"displayCountry": "ประเทศไทย",
"displayLanguage": "ไทย",
"displayName": "Thai (Thailand)",
"displayScript": "Thai",
"displayVariant": "",
"iso3Country": null,
"iso3Language": "tha",
"language": "th",
"script": "Thai",
"variant": ""
}
]

Bad Request — missing or invalid request parameter or body

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Unauthorized — authentication is required or the session has expired

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Forbidden — authenticated but lacking the required permission or scope

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Not Found — the requested resource does not exist

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Method Not Allowed — the HTTP verb is not supported on this endpoint

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Unsupported Media Type — use application/json

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Internal Server Error — an unexpected failure occurred on the server

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example

Service Unavailable — a downstream dependency is unreachable

Media type application/problem+json
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
key
additional properties
""
Example