get__health
Code Samples
# You can also use wget
curl -X GET https://backend.flashback.tech/health \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
GET /health
Health Check
Comprehensive health check of the API and its dependencies.
Returns detailed status information about:
Database connectivity
External service dependencies
System resources
Use this endpoint for monitoring and alerting systems.
Example responses
200 Response
{
"status": "ok",
"timestamp": "2019-08-24T14:15:22Z",
"error": "string"
}
Responses
Status
Meaning
Description
Schema
Response Schema
Status Code 200
Name
Type
Required
Restrictions
Description
» status
string
false
none
Overall health status
» timestamp
string(date-time)
false
none
When the health check was performed
» error
string
false
none
Error message if status is error
Enumerated Values
Property
Value
status
ok
status
error
Last updated
Was this helpful?