CodeVASPCodeVASP
Travel RuleAPI Reference04-CodeVASP-Cipher

05-Health-Check

You can check if the Cipher server is operating normally.

Endpoint

GET /actuator/health

Request Parameters

Headers

NameTypeRequiredDescription
acceptstringOptionalapplication/json

Response

Fields

NameTypeDescription
statusstringStatus of the server (e.g., "UP")

Examples

Request

curl --request GET \
     --url https://your-server-host.com/actuator/health \
     --header 'accept: application/json'

Response

{
  "status": "UP"
}

On this page