# Get Prompt

> Retrieve a specific prompt by ID

`GET https://api.helicone.ai/v1/prompt-2025/id/{promptId}`

Retrieves detailed information about a specific prompt including its metadata.

### Path Parameters

<ParamField path="promptId" type="string" required>
  The unique identifier of the prompt to retrieve
</ParamField>

### Response

<ResponseField name="id" type="string">
  Unique identifier of the prompt
</ResponseField>

<ResponseField name="name" type="string">
  Name of the prompt
</ResponseField>

<ResponseField name="tags" type="string[]">
  Array of tags associated with the prompt
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO timestamp when the prompt was created
</ResponseField>
