Languages

This endpoint returns a list of the languages currently supported by the API.

Request

GET https://learning-objects-v2.p.rapidapi.com/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 here for Rapid API codes examples.

See below for Direct customer access:

curl "https://api.inokufu.com/learningobject/v2/lang"

Response

Response parameters

ParameterDescription

lang

Two-letter code of the language to be used in /search endpoint to filter LO with the lang parameter

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)."
    }
]

Last updated