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

# Delete version

You can delete a prompt version by sending a DELETE request to the prompt version endpoint.

## Example

<CodeGroup>
  ```python example.py theme={"system"}
  import requests

  url = "https://api.keywordsai.co/prompts/<prompt_id>/versions/<prompt_version_id>/"
  api_key = "YOUR_KEYWORDS_AI_API_KEY" # Replace with your actual Keywords AI API key
  headers = {
      "Authorization": f"Bearer {api_key}",
      "Content-Type": "application/json"
  }

  response = requests.delete(url, headers=headers)
  print(response.json())
  ```

  ```typescript example.ts theme={"system"}
  fetch('https://api.keywordsai.co/prompts/<prompt_id>/versions/<prompt_version_id>/', 
  {
    method: 'DELETE',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer YOUR_KEYWORDS_AI_API_KEY'
      }
  })
  .then(response => response.json())
  .then(data => console.log(data));
  ```
</CodeGroup>
