23 lines
287 B
Markdown
23 lines
287 B
Markdown
# Health Check
|
|
|
|
## GET /health
|
|
|
|
Check if the service is running and healthy.
|
|
|
|
**Authentication**: None required
|
|
|
|
**Headers**: None required
|
|
|
|
**Example Request**:
|
|
|
|
```bash
|
|
curl -X GET http://localhost:8000/health
|
|
```
|
|
|
|
**Example Response** (200 OK):
|
|
|
|
```json
|
|
{
|
|
"status": "healthy"
|
|
}
|
|
```
|