Skip to main content
GET
/
v1
/
prompt-2025
/
id
/
{promptId}
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
}

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.

Retrieves a prompt template by its unique identifier. This returns the prompt metadata including name, tags, and creation date.

Path Parameters

promptId
string
required
The unique identifier of the prompt

Response

data
object
id
string
The unique identifier for the prompt
name
string
Name of the prompt template
tags
string[]
Array of tags associated with the prompt
created_at
string
ISO 8601 timestamp of when the prompt was created
error
string | null
Error message if the request failed, null otherwise
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
}