Skip to content

✨ E-Learning

Endpoint : /e-learning (GET method expected)

Example API Response

js
[
  {
    "year": "2024-2025",            // Academic year for the e-learning resource
    "topic": "Video Topic",         // Topic or title of the e-learning resource
    "url": "",                      // URL of the video or resource
    "chapter": "",                  // Optional chapter information
    "standard": "JR.KG",             // Standard or grade for the resource
    "division": "A",                // Division for which the resource is intended
    "subject": "ENGLISH",            // Subject of the resource
    "declare_date_time": "2024-12-12T12:12:12" // Date and time when the resource was declared (ISO 8601 format preferred)
  }
]

Mandatory Parameters

NameParameterDescriptionExpected Values
yearformatAcademic year for the e-learning resource2024-2025
topictextTopic or title of the e-learning resourceVideo Topic
urltextURL of the video or resourceVideo Topic
declare_date_timetextDate and time when the resource was declared (ISO 8601 format preferred)2024-12-12T12:12:12

Optional Parameters

The optional parameters in the HTTP API are tabulated below:

NameParameterDescriptionExpected Values
standardtextStandard for the resourceJR.KG
divisiontextDivision for which the resource is intendedA
subjecttextSubject of the resourceEnglish
chaptertextOptional chapter informationVideo Topic

Notes:

  • Using the ISO 8601 format (YYYY-MM-DDTHH:MM:SS) for declare_date_time is highly recommended for consistency across systems.
  • Clarify if the url can point to other types of online resources besides videos.

Thank You!