# Get Prompt Inputs

> Get the inputs used for a specific prompt version in a request

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

Returns the input variables that were used when a specific prompt version was executed in a request.

### Path Parameters

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

<ParamField path="versionId" type="string" required>
  The unique identifier of the prompt version
</ParamField>

### Query Parameters

<ParamField query="requestId" type="string" required>
  The request ID to retrieve inputs from
</ParamField>

### Response

<ResponseField name="request_id" type="string">
  The request ID
</ResponseField>

<ResponseField name="version_id" type="string">
  The version ID
</ResponseField>

<ResponseField name="inputs" type="object">
  Key-value pairs of input variables and their values used in the request
</ResponseField>
