Skip to main content
GET
/
v1
/
health
!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")
response = client.healthcheck()
import { VlmRun } from "vlmrun";

const client = new VlmRun({ apiKey: "<VLMRUN_API_KEY>" });
const response = await client.models.list();
// Health check can be verified by successful API call
console.log("API is healthy");
curl --request GET \
  --url https://api.vlm.run/v1/health
!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")
response = client.healthcheck()
import { VlmRun } from "vlmrun";

const client = new VlmRun({ apiKey: "<VLMRUN_API_KEY>" });
const response = await client.models.list();
// Health check can be verified by successful API call
console.log("API is healthy");
curl --request GET \
  --url https://api.vlm.run/v1/health

Response

200 - application/json

Successful Response