Skip to main content

GET /health

Simple health check endpoint to verify the API server is running.

Endpoint

GET /health

Response

Success (200)
{
  "success": true,
  "message": "tx-submission-api server running...",
  "gitSha": "abc123def456..."
}
FieldTypeDescription
successbooleanAlways true if server is healthy
messagestringStatus message
gitShastringGit commit SHA of deployed version

Example

curl /health

Use Cases

  • Monitoring: Health check for load balancers and uptime monitoring
  • Debugging: Verify which version is deployed via gitSha