curl --request POST \
--url https://backend.codedamn.com/api/public/get-published-course-information \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"fermionCourseId": "<string>",
"fermionSchoolId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"response": {
"courseType": "RecordedCourse",
"createdAt": "<string>",
"lastUpdatedAt": "<string>",
"instructors": [
{
"name": "<string>",
"profilePhotoUrl": "<string>",
"longDescriptionMarkdown": "<string>",
"tagline": "<string>"
}
],
"courseItems": [
{
"courseItemId": "<string>",
"sectionName": "<string>",
"link": "<string>",
"isFreePreviewAvailable": true,
"type": "Article",
"articleTitle": "<string>"
}
]
}
}
}
}
]
Get published course items for an individual course
Rate limit: Maximum 15 requests in a window of 1m.
curl --request POST \
--url https://backend.codedamn.com/api/public/get-published-course-information \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"fermionCourseId": "<string>",
"fermionSchoolId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"response": {
"courseType": "RecordedCourse",
"createdAt": "<string>",
"lastUpdatedAt": "<string>",
"instructors": [
{
"name": "<string>",
"profilePhotoUrl": "<string>",
"longDescriptionMarkdown": "<string>",
"tagline": "<string>"
}
],
"courseItems": [
{
"courseItemId": "<string>",
"sectionName": "<string>",
"link": "<string>",
"isFreePreviewAvailable": true,
"type": "Article",
"articleTitle": "<string>"
}
]
}
}
}
}
]
API Request Body
The body is of type object
.
API Response Body
The response is of type object[]
.