Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 933 Bytes

LANGUAGES.md

File metadata and controls

69 lines (47 loc) · 933 Bytes

Languages

Manage languages.

Table of Contents

List Languages

List languages.

GET /api/languages

Headers

None.

Path Parameters

None.

Query Parameters

None.

Request Body

None.

Response

Status Code

  • 200 - OK

Response Body

List of languages.

{
  "de": "Deutsch",
  "no": "Norsk Bokmål",
  "ru": "Русский",
  "cz": "Čeština",
  "ja": "日本語",
  "en": "English",
  "it": "Italiano",
  "fr": "Français",
  "nl": "Nederlands",
  "zh": "简体中文",
  "es": "Spanish"
}

Back to Top