# System

健康檢查等系統端點

## GET /healthz

> liveness：永遠回 200（只要行程能處理請求就算活著）。

```json
{"openapi":"3.1.0","info":{"title":"Blockchain Atlantis API Gateway","version":"0.1.0"},"tags":[{"name":"system","description":"健康檢查等系統端點"}],"paths":{"/healthz":{"get":{"tags":["system"],"summary":"liveness：永遠回 200（只要行程能處理請求就算活著）。","operationId":"livez","responses":{"200":{"description":"行程存活"}}}}}}
```

## GET /readyz

> readiness：檢查啟動旗標與關鍵依賴。

```json
{"openapi":"3.1.0","info":{"title":"Blockchain Atlantis API Gateway","version":"0.1.0"},"tags":[{"name":"system","description":"健康檢查等系統端點"}],"paths":{"/readyz":{"get":{"tags":["system"],"summary":"readiness：檢查啟動旗標與關鍵依賴。","operationId":"readyz","responses":{"200":{"description":"已就緒（Postgres / Redis 正常）"},"503":{"description":"尚未就緒或依賴不可用"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.blockchainsecurity.asia/api-reference/readme/system.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
