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

Request

GET https://api.gateway.inokufu.com/learningobject/v3/model

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/model"

Response

Response parameters

Parameter

Description

id_model

Name of the model

name

Localised name of this model

description

Localised description of this model

[
  {
    "id_model": "keywords",
    "name": {
      "fr": "Mots clés",
      "en": "Keywords"
    },
    "description": {
      "fr": "Le modèle mots-clés est un modèle qui permet de rechercher des LO par mots-clés, en utilisant une recherche textuelle sur différents champs du LO.",
      "en": "Keywords model is a model that search LO by keywords, using a full text search on different fields of the LO."
    }
  },
  {
    "id_model": "semantic",
    "name": {
      "fr": "Sémantique",
      "en": "Semantic"
    },
    "description": {
      "fr": "Le modèle sémantique est un modèle qui recherche un LO en fonction de la signification réelle de la requête, en utilisant une recherche sémantique sur différents champs du LO.",
      "en": "Semantic model is a model that search LO by the true meaning of the query, using a semantic search on different fields of the LO."
    }
  }
]