List languages from TYPO3.

Fields

id (integer)

Primary key.

title (string)

Titel of language.

flag (string)

ISO 3361-1 code.

isocode (string)

ISO 639-1 code.

GET /v1/typo3/language/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "title": "English",
            "flag": "gb",
            "isocode": "en"
        }
    ]
}