Skip to main content
GET
/
v2
/
health
Health Check
curl --request GET \
  --url https://api.mrdoge.co/v2/health \
  --header 'Authorization: Bearer <token>'
{
  "timestamp": "2025-11-15T08:43:32.135Z",
  "status": "healthy",
  "version": "1.0.0",
  "message": "Mr. Doge API is operational"
}
Public Endpoint: No API key required
This endpoint is useful for:
  • Monitoring API uptime
  • Verifying database connectivity
  • Checking API version

Response

status
string
Service health status (ok or error)
database
string
Database connection status (connected or disconnected)
version
string
Current API version
message
string
Human-readable status message
{
  "timestamp": "2025-11-15T08:43:32.135Z",
  "status": "healthy",
  "version": "1.0.0",
  "message": "Mr. Doge API is operational"
}

Authorizations

Authorization
string
header
required

Use your API key from the Mr. Doge dashboard. Format: Bearer sk_live_... or Bearer sk_test_...

Response

200 - application/json

Service is healthy

status
string
Example:

"ok"

database
string
Example:

"connected"

version
string
Example:

"1.0.0"