curl -X GET https://api.helicone.ai/v1/prompt-2025/id/prompt_abc123xyz \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "prompt_abc123xyz",
"name": "Customer Support Agent",
"tags": ["support", "customer-service"],
"created_at": "2024-03-10T12:00:00Z"
},
"error": null
}
Retrieve a prompt by ID
curl -X GET https://api.helicone.ai/v1/prompt-2025/id/prompt_abc123xyz \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "prompt_abc123xyz",
"name": "Customer Support Agent",
"tags": ["support", "customer-service"],
"created_at": "2024-03-10T12:00:00Z"
},
"error": null
}
Retrieves a prompt template by its unique identifier. This returns the prompt metadata including name, tags, and creation date.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/helicone/helicone/llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET https://api.helicone.ai/v1/prompt-2025/id/prompt_abc123xyz \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "prompt_abc123xyz",
"name": "Customer Support Agent",
"tags": ["support", "customer-service"],
"created_at": "2024-03-10T12:00:00Z"
},
"error": null
}