System

Health checks and monitoring endpoints

Health check

get
/api/v1/health

Check if the API is operational. No authentication required.

Use cases:

  • Monitor API uptime

  • Check service status

  • Verify connectivity

Responses
get
/api/v1/health
GET /api/v1/health HTTP/1.1
Host: api.naos.trade
Accept: */*
200

API is healthy and operational

{
  "success": true,
  "status": "healthy",
  "timestamp": "2024-01-15T10:30:00.000Z",
  "version": "1.0.0"
}

Last updated