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

# Retrieve prompts

This endpoint allows you to get a list of prompts that you have created.

## Get prompt list

Send a GET request to the `/prompts/` endpoint to get a list of prompts that you have created.

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

  url = "https://api.keywordsai.co/api/prompts/"
  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.get(url, headers=headers)
  print(response.json())
  ```

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

## Get a single prompt

You can get a single prompt by sending a GET request to the `/prompts/<prompt_id>/` endpoint.

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

  url = "https://api.keywordsai.co/api/prompts/<prompt_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.get(url, headers=headers)
  print(response.json())
  ```

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