Readiness check
Checks database and Redis connectivity
GET
/v1/readyResponses
200OK
statusstringrequireddefaultError
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstringRequest
curl -X GET "/v1/ready"const response = await fetch("/v1/ready", {
method: "GET"
});import requests
response = requests.get(
"/v1/ready",
)Response
{
"status": "ready"
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}