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

# Delete Prompt Slug

> You can delete a prompt slug in Athina's Prompt Playground, or via API

<Warning>
  Note that this deletes the entire `prompt_slug`, including all associated `prompt_template` versions.

  Deleting a prompt is irreversible. Make sure you want to delete the prompt before using this endpoint.
</Warning>

### Delete a Prompt on Athina Playground

To delete a prompt in Athina:

1. Open [https://app.athina.ai.ai/prompt](https://app.athina.ai.ai/prompt)

2. Click on the three dots next to the prompt you want to delete in the sidebar.

3. Click `Delete` and confirm in the modal.

### Delete a Prompt via API

<Tabs>
  <Tab title="python">
    ```python
    from athina_client.prompt import Slug

    Slug.delete(slug="test-slug")

    ```
  </Tab>

  <Tab title="curl">
    ```bash

    curl
    --location
    --request DELETE 'https://app.athina.ai/api/v1/prompt/slug/[PROMPT_SLUG]' \
    --header 'athina-api-key: ATHINA_API_KEY'
    ```
  </Tab>
</Tabs>
