---
title: Health Checks
url: https://docs.vultr.com/products/compute/serverless-inference/management/health-checks
description: A monitoring feature that regularly tests your services to verify theyre operational and can automatically restart failing instances.
publish_date: 2025-03-11T18:59:22.509545Z
last_updated: 2026-05-26T19:10:37.860732Z
---

# How to Monitor Health Checks for Vultr Serverless Inference

Health Checks on Vultr Serverless Inference ensures that your deployments remain operational and responsive. By periodically checking its status, you can proactively detect potential issues and maintain seamless AI performance.

Follow this guide to check the status of Serverless Inference subscription using the Vultr API.

1. Send a `GET` request to the [**List Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/list-inference) and note the target inference subscription's ID.

    ```console
    $ curl "https://api.vultr.com/v2/inference" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```

1. Send a `GET` request to the [**Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/get-inference) and note the target inference subscription's API key.

    ```console
    $ curl "https://api.vultr.com/v2/inference/{inference-id}" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    ```

1. Send a `GET` request to the [**Health Check** endpoint](https://api.vultrinference.com/#tag/Health-Check) to view the current status of the target inference subscription.

    ```console
    $ curl "https://api.vultrinference.com/v1/health" \
        -X GET \
        -H "Authorization: Bearer ${INFERENCE_API_KEY}"
    ```
