How to Delete an Application

Updated on 05 August, 2026

Delete an application from the Vultr Marketplace using the Vultr Console or Vultr API to permanently remove its profile, builds, and configuration from Vultr.


Deleting an application removes all Marketplace information about it, including its profile, variables, gallery images, and builds.

This guide explains how to delete an application using the Vultr Console or the Vultr API.

Warning
Deleting an app is irreversible. You cannot recover a deleted app, and customers can no longer deploy new instances of it. Deleting an app does not delete any customer deployments. All deployed instances continue to run until the customer destroys them.
  • Vultr Console
  • Vultr API
  1. Click Marketplace in the Vultr Console's left-hand menu.

  2. Click the application name to open the Edit App screen.

  3. Click the Settings tab.

  4. Under Delete App, click the Delete App button.

    Verify that the application no longer appears in the Marketplace Applications list.

Send a DELETE request to the Delete Marketplace App endpoint. Replace {app-id} with the app's ID.

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

A successful request returns an HTTP 204 No Content response.

Comments