Skip to main content
Use this endpoint to permanently delete an application from Virtus Cloud. When you delete an application, Virtus Cloud stops the running process, releases all allocated resources (RAM, CPU, and storage), and removes every file associated with the deployment. This operation is irreversible — there is no way to recover a deleted application or its files after the request completes.
Deleting an application is permanent. Back up any files or data you need before issuing this request. Once the deletion succeeds, all deployed files, logs, and configuration are gone.

Endpoint

DELETE https://api.virtuscloud.app/v2/apps/{app_id}

Path parameters

app_id
string
required
The unique ID of the application to delete. You can find this in the URL of your application’s dashboard page on Virtus Cloud.

Request headers

Authorization
string
required
Your Virtus Cloud API key. See Authentication for details.

Response

status
string
Indicates whether the request succeeded. Returns "success" when the application has been permanently deleted.

Code example

curl --request DELETE \
  --url https://api.virtuscloud.app/v2/apps/<app_id> \
  --header "Authorization: <your_api_key>"

Response example

{
  "status": "success"
}