> ## Documentation Index
> Fetch the complete documentation index at: https://spiceflow-docs.spicenet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check

> Check API server status

# GET /health

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

## Endpoint

```http theme={null}
GET /health
```

## Response

**Success (200)**

```json theme={null}
{
  "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 |

## Example

```bash theme={null}
curl /health
```

## Use Cases

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