> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Model

> This endpoint is used to delete a model from your dedicated server.

## Request

Send a `POST` request to below endpoint. Specify the ID(name) of the model to be deleted by using the `model_id` parameter in the request body.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/delete_model' \
```

## Body Attributes

<ParamField query="key" type="string" required>
  Your enterprise API Key used for request authorization.
</ParamField>

<ParamField query="model_id" type="string" required>
  The ID of the model to be deleted.
</ParamField>

## Body

```json json theme={null}
{ 
    "key": "enterprise_api_key", 
    "model_id": "ckpt-model"
}
```
