curl --request POST \
--url https://backend.codedamn.com/api/public/get-all-courses \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"searchFilter": {
"searchTerm": "<string>"
},
"fermionSchoolId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"courses": [
{
"fermionCourseId": "<string>",
"courseName": "<string>",
"courseSlug": "<string>",
"courseLink": "<string>",
"thumbnailUrl": "<string>",
"createdAt": "<string>",
"lastUpdatedAt": "<string>",
"ratingOutOf10": 123,
"instructors": [
{
"name": "<string>",
"profilePhotoUrl": "<string>",
"longDescriptionMarkdown": "<string>",
"tagline": "<string>"
}
]
}
]
}
}
}
]
Get details of all published courses with this API
Rate limit: Maximum 15 requests in a window of 1m.
curl --request POST \
--url https://backend.codedamn.com/api/public/get-all-courses \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"searchFilter": {
"searchTerm": "<string>"
},
"fermionSchoolId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"courses": [
{
"fermionCourseId": "<string>",
"courseName": "<string>",
"courseSlug": "<string>",
"courseLink": "<string>",
"thumbnailUrl": "<string>",
"createdAt": "<string>",
"lastUpdatedAt": "<string>",
"ratingOutOf10": 123,
"instructors": [
{
"name": "<string>",
"profilePhotoUrl": "<string>",
"longDescriptionMarkdown": "<string>",
"tagline": "<string>"
}
]
}
]
}
}
}
]
API Request Body
The body is of type object
.
API Response Body
The response is of type object[]
.