# Delete Search Index

> Permanently deletes a search index and all its data

## Endpoint

`DELETE https://api.upstash.com/v2/search/{id}`

## Parameters

- `id` (path, string, required): The unique ID of the search index to be deleted

## Responses

### 200 - Search Index Deleted Successfully


## cURL

```bash
curl --request DELETE \
  --url https://api.upstash.com/v2/search/{id} \
  --header 'Authorization: Bearer <token>'
```
