/lang
This endpoint returns a list of the languages currently supported by the API.
Request
GET https://api.gateway.inokufu.com/learningobject/v3/lang
Headers
This endpoint does not require any API key authentication in the header.
Query Parameters
This endpoint does not require any query parameter.
Code example
curl "https://api.gateway.inokufu.com/learningobject/v3/lang"
Response
Response parameters
Parameter | Description |
---|---|
| Two-letter code of the language to be used in /search endpoint to filter LO |
| Localised name of this language |
Response example
Here is an example of the JSON structured response provided by this endpoint.
[
{
"id_lang": "fr",
"name": {
"fr": "Français",
"en": "French"
}
},
{
"id_lang": "en",
"name": {
"fr": "Anglais",
"en": "English"
}
}
]