Skip to main content
GET
/
health
Health check
curl --request GET \
  --url https://litellm-rust.onrender.com/health
import requests

url = "https://litellm-rust.onrender.com/health"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://litellm-rust.onrender.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "status": "ok"
}

Response

200 - application/json

Server is healthy

status
string
Example:

"ok"