GET
/
health
curl --request GET \
  --url https://rest.taxes.provider.com/api/v1/health
{
  "status": "UP",
  "version": "1.0.0",
  "description": "The service is healthy.",
  "components": [
    {
      "id": "app-db-memory",
      "name": "Application Database",
      "type": "DATABASE",
      "status": "UP"
    },
    {
      "id": "adapter-server",
      "name": "Adapter API Server",
      "type": "ADAPTER",
      "status": "UP"
    },
    {
      "id": "service-server",
      "name": "API Server",
      "type": "API",
      "status": "UP"
    }
  ],
  "time": "2022-11-01T05:12:08.131Z"
}

Response

200
application/json
Service is healthy.
status
enum<string>
required

The status of a specific component reported by the Service Adapter.

Available options:
UP,
DOWN,
WARN
components
object[]
required

List of health status details for each component reported by the Service Adapter.

The health status details of a specific component reported by the Service Adapter.

time
string
required

The timestamp of the health status reported by the Service Adapter.

version
string
Minimum length: 1
description
string

The description of the health status returned by the Service Adapter.

Maximum length: 250