---
title: "Health"
method: GET
path: "/health"
tags: ["health"]
---

# Health

`GET /health`

This function is used to verify that the server is running and responsive.
It's typically used by load balancers or monitoring systems to check the
health status of the service.

# Returns

Returns a static string "OK" to indicate that the server is healthy and
functioning properly.

# Examples

This function is usually mapped to a GET endpoint, for example:

```rust,ignore
app.route("/health", get(health_check))
```

## Response `200`

Service is healthy

- unknown

---

[API](https://skmtc.net/atomaai/apis/atoma-service.md) · [All operations](https://skmtc.net/atomaai/apis/atoma-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atomaai/atoma-service/revisions/a3d329cb3125/schema)
