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

# GET /health — API Server Status

> Check whether the Veedcrawl API server is up and responding. No authentication or credits required. Returns {"status":"ok"} when the server is healthy.

The `/health` endpoint lets you verify that the Veedcrawl API is running. No authentication is required, so you can call it freely from uptime monitors, deployment checks, or any infrastructure tooling without consuming credits or exposing your API key.

## Endpoint

```
GET https://api.veedcrawl.com/health
```

## Parameters

This endpoint takes no parameters.

## Response

```json theme={null}
{
  "status": "ok"
}
```

## Example

```bash theme={null}
curl "https://api.veedcrawl.com/health"
```

<Note>
  Use `/health` for uptime monitoring. It never requires an API key and never consumes credits, making it safe to poll as frequently as your monitoring stack needs.
</Note>
