---
title: Delete
url: https://docs.vultr.com/products/compute/serverless-inference/management/destroy
description: Permanently removes the selected resource from your Vultr account.
publish_date: 2024-09-23T20:20:48.288605Z
last_updated: 2026-05-26T19:10:37.588444Z
---

# How to Delete Vultr Serverless Inference

Deleting the Vultr Serverless Inference subscription involves removing the entire inference subscription from your account. This process is important for managing resource allocation and avoiding unnecessary costs. Ensuring that unused subscriptions are properly deleted helps maintain an efficient and cost-effective cloud environment.

Follow this guide to delete the Serverless Inference subscription on your Vultr account using the Vultr Console, API, or CLI.

=== "Vultr Console"

    1. Navigate to **Products**, click **Serverless**, and then click **Inference**.

    1. Click your target inference subscription to open its management page.

    1. Click delete icon on the top right of the management page.

    1. Click **Close Serverless Inference Subscription** in the confirmation prompt to permanently delete the target inference subscription.

=== "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 `DELETE` request to the [**Delete Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/delete-inference) to delete the target inference subscription.

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

=== "Vultr CLI"

    1. List all the inference subscriptions available and note the target inference subscription's ID.

        ```console
        $ vultr-cli inference list
        ```

    1. Delete the target inference subscription.

        ```console
        $ vultr-cli inference delete <inference-id>
        ```
