Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vane.build/llms.txt

Use this file to discover all available pages before exploring further.

GET /v1/health

Returns 200 if the server is running. No authentication required. Use this for load balancer health checks and readiness probes.

Response 200

{ "status": "ok" }

Example

curl http://localhost:3000/v1/health
{ "status": "ok" }

Notes

This endpoint does not check database connectivity. It returns 200 as long as the Node.js process is alive and the HTTP server is accepting connections. For a deeper health check that exercises the database, call GET /v1/chain (authenticated) and verify the response.