GET /health
Simple health check endpoint to verify the API server is running.Endpoint
Response
Success (200)Example
Use Cases
- Monitoring: Health check for load balancers and uptime monitoring
- Debugging: Verify which version is deployed via
gitSha
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check API server status
GET /health
{
"success": true,
"message": "tx-submission-api server running...",
"gitSha": "abc123def456..."
}
| Field | Type | Description |
|---|---|---|
success | boolean | Always true if server is healthy |
message | string | Status message |
gitSha | string | Git commit SHA of deployed version |
curl /health
gitSha