# Get Prompt Version Counts

> Get version count statistics for a specific prompt

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

Retrieves statistics about the total number of versions and major versions for a specific prompt.

### Request Body

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

### Response

<ResponseField name="totalVersions" type="number">
  Total number of versions (major and minor) for this prompt
</ResponseField>

<ResponseField name="majorVersions" type="number">
  Total number of major versions for this prompt
</ResponseField>
