/lang
This endpoint returns a list of the languages currently supported by the API.
Request
GET https://api.inokufu.com/learningobject/v2/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 examples
See for Rapid API codes examples.
See below for Direct customer access:
curl "https://api.inokufu.com/learningobject/v2/lang"
Response
Response parameters
Parameter | Description |
---|---|
lang | Two-letter code of the language to be used in /search endpoint to filter LO |
description | Short description of this language |
Response example
Here is an example of the JSON structured response provided by this endpoint.
[
{
"lang": "en",
"description": "Use this code for LO in english language."
},
{
"lang": "fr",
"description": "Use this code for LO in french language (français)."
}
]