# 05-Health-Check



05-Health-Check [#05-health-check]

You can check if the Cipher server is operating normally.

Endpoint [#endpoint]

`GET` `/actuator/health`

Request Parameters [#request-parameters]

Headers [#headers]

| Name   | Type   | Required | Description        |
| :----- | :----- | :------- | :----------------- |
| accept | string | Optional | `application/json` |

Response [#response]

Fields [#fields]

| Name   | Type   | Description                       |
| :----- | :----- | :-------------------------------- |
| status | string | Status of the server (e.g., "UP") |

Examples [#examples]

Request [#request]

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

Response [#response-1]

```json
{
  "status": "UP"
}
```
