Retrieve Prompts
See how to use Portkey’s prompt templates with OpenAI (or any other provider) SDKs
This feature is available on all Portkey plans.
You can retrieve your saved prompts on Portkey using the /prompts/$PROMPT_ID/render
endpoint. Portkey returns a JSON containing your prompt or messages body along with all the saved parameters that you can directly use in any request.
This is helpful if you are required to use provider SDKs and can not use the Portkey SDK in production. (Example of how to use Portkey prompt templates with OpenAI SDK)
Using the Render
Endpoint/Method
- Make a request to
https://api.portkey.ai/v1/prompts/$PROMPT_ID/render
with your prompt ID - Pass your Portkey API key with
x-portkey-api-key
in the header - Send up the variables in your payload with
{ "variables": { "VARIABLE_NAME": "VARIABLE_VALUE" } }
That’s it! See it in action:
The Output:
Updating Prompt Params While Retrieving the Prompt
If you want to change any model params (like temperature
, messages body
etc) while retrieving your prompt from Portkey, you can send the override params in your render
payload.
Portkey will send back your prompt with overridden params, without making any changes to the saved prompt on Portkey.
Based on the above snippet, model
and temperature
params in the retrieved prompt will be overridden with the newly passed values
The New Output:
Using the render
Output in a New Request
Here’s how you can take the output from the render
API and use it for making a call. We’ll take example of OpenAI SDKs, but you can use it simlarly for any other provider SDK as well.
Was this page helpful?