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

# Delete prompt

> Delete a single prompt.

Permanently deletes one prompt. Returns updated remaining slot counts.

### Path parameters

<ParamField path="promptId" type="string" required>
  Prompt UUID.
</ParamField>

### Request

```bash theme={null}
curl -s -X DELETE \
  -H "x-spotlight-api-key: YOUR_API_KEY" \
  "https://app.get-spotlight.com/api/v1/prompts/PROMPT_ID"
```

### Response

```json theme={null}
{
  "deleted": true,
  "remainingSlots": 87
}
```
