GET
/
api
/
prompts
/
<prompt_id>
/
versions
curl --request GET \
  --url https://api.keywordsai.co/api/prompts/%3Cprompt_id%3E/versions/ \
  --header 'Authorization: Bearer <token>'

This endpoint allows you to get a list of versions of a prompt.

Get prompt versions

import requests

url = "https://api.keywordsai.co/api/prompts/<prompt_id>/versions/"
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())

Get a single prompt version

You can get a single prompt version by sending a GET request to the api/prompts/<prompt_id>/versions/<version_id>/ endpoint.

import requests

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