Skip to main content
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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.helicone.ai/llms.txt

Use this file to discover all available pages before exploring further.

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"
}