GET
/
api
/
v0
/
health
/
public
Public health check endpoint
curl --request GET \
  --url https://api.devdraft.ai/api/v0/health/public
{
  "status": "ok",
  "timestamp": "2023-07-01T12:00:00.000Z",
  "version": "1.0.0"
}

Response

200 - application/json

Basic service health check

status
enum<string>
required

Basic health status of the service. Returns "ok" when the service is responding.

Available options:
ok,
error
Example:

"ok"

timestamp
string<date-time>
required

ISO 8601 timestamp when the health check was performed.

Example:

"2023-07-01T12:00:00.000Z"

version
string
required

Current version of the API service.

Example:

"1.0.0"