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>",
"contentMarkdown": "<string>",
"category": "<string>",
"featuredImageUrl": "<string>"
}
]
}
}
}
]
Get details of all published blogs 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-blogs \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"fermionSchoolId": "<string>"
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"blogs": [
{
"fermionBlogId": "<string>",
"slug": "<string>",
"titleMarkdown": "<string>",
"contentMarkdown": "<string>",
"category": "<string>",
"featuredImageUrl": "<string>"
}
]
}
}
}
]
API Request Body
The body is of type object
.
API Response Body
The response is of type object[]
.