import requestsurl = "https://api.keywordsai.co/api/prompts/<prompt_id>/versions/"api_key = "YOUR_KEYWORDS_AI_API_KEY" # Replace with your actual Keywords AI API keyheaders = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}response = requests.get(url, headers=headers)print(response.json())
You can get a single prompt version by sending a GET request to the api/prompts/<prompt_id>/versions/<version_id>/ endpoint.
Copy
import requestsurl = "https://api.keywordsai.co/api/prompts/<prompt_id>/versions/<version>/"api_key = "YOUR_KEYWORDS_AI_API_KEY" # Replace with your actual Keywords AI API keyheaders = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}response = requests.get(url, headers=headers)print(response.json())