> For the complete documentation index, see [llms.txt](https://teeinblue-api.gitbook.io/teeinblue-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://teeinblue-api.gitbook.io/teeinblue-api-docs/api/health.md).

# Health

Service status and version

## GET /health

> Health check

```json
{"openapi":"3.1.0","info":{"title":"Teeinblue Public API","version":"1.0.0"},"tags":[{"name":"Health","description":"Service status and version"}],"servers":[{"url":"https://api.teeinblue.com/openapi/v1","description":"Production"}],"paths":{"/health":{"get":{"tags":["Health"],"summary":"Health check","operationId":"getHealth","responses":{"200":{"description":"Service is healthy","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Health"}}}}}}}},"components":{"schemas":{"Health":{"type":"object","required":["status"],"properties":{"status":{"type":"string"}}}}}}
```

## GET /version

> API version

```json
{"openapi":"3.1.0","info":{"title":"Teeinblue Public API","version":"1.0.0"},"tags":[{"name":"Health","description":"Service status and version"}],"servers":[{"url":"https://api.teeinblue.com/openapi/v1","description":"Production"}],"paths":{"/version":{"get":{"tags":["Health"],"summary":"API version","operationId":"getVersion","responses":{"200":{"description":"Current API version","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Version"}}}}}}}},"components":{"schemas":{"Version":{"type":"object","required":["version"],"properties":{"version":{"type":"string"}}}}}}
```
