POST
/
public
/
get-all-courses
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-courses \
  --header 'Content-Type: application/json' \
  --data '{
  "data": [
    {
      "data": {
        "fermionSchoolId": "<string>"
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "courses": [
          {
            "fermionCourseId": "<string>",
            "courseName": "<string>",
            "courseSlug": "<string>",
            "courseLink": "<string>",
            "thumbnailUrl": "<string>"
          }
        ]
      }
    }
  }
]

Body

application/json

API Request Body

The body is of type object.

Response

200 - application/json

API Response Body

The response is of type object[].