> ## 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.

# List Prompt Slugs

> You can list all prompt slugs stored on Athina via API or Python SDK

### View all Prompt Slugs on Athina Playground

To view all prompt slugs in Athina:

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

2. You will see all the prompt slugs listed in the sidebar

### List all Prompt Slugs Programmatically

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

    Slug.list()

    ```
  </Tab>

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

    curl \
    --location \
    --request GET 'https://api.athina.ai/api/v1/prompt/slug/all' \
    --header 'athina-api-key: ATHINA_API_KEY'
    ```
  </Tab>
</Tabs>
