GET
/
v1
/
prompt-2025
/
id
/
{promptId}
curl -X GET "https://api.helicone.ai/v1/prompt-2025/id/prompt_123" \
  -H "Authorization: Bearer $HELICONE_API_KEY"
{
  "id": "prompt_123",
  "name": "Customer Support Bot",
  "tags": ["support", "chatbot"],
  "created_at": "2024-01-15T10:30:00Z"
}
Retrieves detailed information about a specific prompt including its metadata.

Path Parameters

promptId
string
required
The unique identifier of the prompt to retrieve

Response

id
string
Unique identifier of the prompt
name
string
Name of the prompt
tags
string[]
Array of tags associated with the prompt
created_at
string
ISO timestamp when the prompt was created
curl -X GET "https://api.helicone.ai/v1/prompt-2025/id/prompt_123" \
  -H "Authorization: Bearer $HELICONE_API_KEY"
{
  "id": "prompt_123",
  "name": "Customer Support Bot",
  "tags": ["support", "chatbot"],
  "created_at": "2024-01-15T10:30:00Z"
}