Skip to main content
DELETE
/
v0
/
models
/
{name}
Delete a model by short name
curl --request DELETE \
  --url https://api.studio.nebius.com/v0/models/{name} \
  --header 'Authorization: Bearer <token>'
{
  "name": "meta-llama/Meta-Llama-3.1-8B-Instruct-LoRa:my-custom-model-udpd",
  "base_model": "meta-llama/Meta-Llama-3.1-8B-Instruct-fast",
  "source": "ftjob-1234567890:ftckpt_1234567890",
  "description": "<string>",
  "created_at": 123,
  "status": "deleted"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

name
string
required

Response

Successful Response

name
string
required

The new model name.

Examples:

"meta-llama/Meta-Llama-3.1-8B-Instruct-LoRa:my-custom-model-udpd"

base_model
string
required

The base model identifier the new model belongs to

Examples:

"meta-llama/Meta-Llama-3.1-8B-Instruct-fast"

source
string
required

Checkpoint id from Fine-Tunes API, file id from Files API, or HuggingFace repo url

Examples:

"ftjob-1234567890:ftckpt_1234567890"

"file-1234567890"

"huggingface.co/sofrony/Llama-3.1-8B-Instruct-sofrony"

created_at
integer
required
status
enum<string>
required

The status of the model Enum representing the possible statuses of a model.

Available options:
validating,
active,
error,
deleted
Examples:

"deleted"

description
string | null