POST
/
public
/
get-all-blogs
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-blogs \
  --header 'Content-Type: application/json' \
  --data '{
  "data": [
    {
      "data": {
        "fermionSchoolId": "<string>"
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "blogs": [
          {
            "fermionBlogId": "<string>",
            "slug": "<string>",
            "titleMarkdown": "<string>",
            "contentJson": "<string>",
            "category": "<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[].