Blog
Get blog information
Get details of a single blog with this API endpoint
Rate limit: Maximum 15 requests in a window of 1m.
POST
/
public
/
get-blog-information
Copy
curl --request POST \
--url https://backend.codedamn.com/api/public/get-blog-information \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"slug": "<string>",
"fermionSchoolId": "<string>"
}
}
]
}'
Copy
[
{
"output": {
"status": "ok",
"data": {
"response": {
"status": "ok",
"titleMarkdown": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"contentMarkdown": "<string>",
"featuredImageUrl": "<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[]
.
Copy
curl --request POST \
--url https://backend.codedamn.com/api/public/get-blog-information \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"slug": "<string>",
"fermionSchoolId": "<string>"
}
}
]
}'
Copy
[
{
"output": {
"status": "ok",
"data": {
"response": {
"status": "ok",
"titleMarkdown": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"contentMarkdown": "<string>",
"featuredImageUrl": "<string>"
}
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.