Misc
Health check
Health check for our internal system
Rate limit: Maximum 60 requests in a window of 1m.
POST
/
public
/
health-check
curl --request POST \
--url https://backend.codedamn.com/api/public/health-check \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"hello": "world"
}
}
}
]
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[]
.
curl --request POST \
--url https://backend.codedamn.com/api/public/health-check \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"hello": "world"
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.