# Health ## Health check `client.Health.Check(ctx) (*HealthCheckResponse, error)` **get** `/health` Returns HTTP 200 when the service is running. No authentication required. ### Returns - `type HealthCheckResponse struct{…}` - `Status HealthCheckResponseStatus` - `const HealthCheckResponseStatusOk HealthCheckResponseStatus = "ok"` ### Example ```go package main import ( "context" "fmt" "github.com/chamelaion/chamelaion-go" "github.com/chamelaion/chamelaion-go/option" ) func main() { client := chamelaion.NewClient( option.WithBearerToken("My Bearer Token"), option.WithAPIKey("My API Key"), ) response, err := client.Health.Check(context.TODO()) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", response.Status) } ``` #### Response ```json { "status": "ok" } ```