Skip to main content
POST
/
public
/
get-all-instructors
Get all instructors
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-instructors \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {}
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "instructors": [
          {
            "fermionInstructorId": "<string>",
            "name": "<string>",
            "email": "jsmith@example.com",
            "profilePhotoUrl": "<string>",
            "tagline": "<string>",
            "longDescriptionMarkdown": "<string>",
            "createdAt": "<string>",
            "lastUpdatedAt": "<string>"
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

data
object[]
required

Response

200 - application/json

API Response Body

output
object
required
  • Option 1
  • Option 2