✨ 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
| Name | Parameter | Description | Expected Values |
|---|---|---|---|
| year | format | Academic year for the e-learning resource | 2024-2025 |
| topic | text | Topic or title of the e-learning resource | Video Topic |
| url | text | URL of the video or resource | Video Topic |
| declare_date_time | text | Date 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:
| Name | Parameter | Description | Expected Values |
|---|---|---|---|
| standard | text | Standard for the resource | JR.KG |
| division | text | Division for which the resource is intended | A |
| subject | text | Subject of the resource | English |
| chapter | text | Optional chapter information | Video Topic |
Notes:
- Using the ISO 8601 format (
YYYY-MM-DDTHH:MM:SS) fordeclare_date_timeis highly recommended for consistency across systems. - Clarify if the
urlcan point to other types of online resources besides videos.
