# Create Prompt

> Create a new prompt with initial version

`POST https://api.helicone.ai/v1/prompt-2025`

Creates a new prompt with the specified name, tags, and initial prompt body. Returns the prompt ID and initial version ID.

### Request Body

<ParamField body="name" type="string" required>
  Name of the prompt
</ParamField>

<ParamField body="tags" type="string[]" required>
  Array of tags to associate with the prompt
</ParamField>

<ParamField body="promptBody" type="OpenAIChatRequest" required>
  The initial prompt body following OpenAI chat completion format
</ParamField>

### Response

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

<ResponseField name="versionId" type="string">
  Unique identifier of the initial prompt version
</ResponseField>
