---
title: "Delete a deployment"
method: DELETE
path: "/deployments/{deployment_owner}/{deployment_name}"
---

# Delete a deployment

`DELETE /deployments/{deployment_owner}/{deployment_name}`

Delete a deployment

Deployment deletion has some restrictions:

- You can only delete deployments that have been offline and unused for at least 15 minutes.

Example cURL request:

```command
curl -s -X DELETE \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  https://api.replicate.com/v1/deployments/acme/my-app-image-generator
```

The response will be an empty 204, indicating the deployment has been deleted.

## Path parameters

- `deployment_owner` string, required
- `deployment_name` string, required

## Response `204`

Success

---

[API](https://skmtc.net/replicate/apis/replicate-http-api.md) · [All operations](https://skmtc.net/replicate/apis/replicate-http-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/replicate/replicate-http-api/versions/7a537f433b0b/schema)
