> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usefini.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get prompt version

> Fetch one saved prompt version for an agent.

Returns one saved prompt version as a merged view of that version plus the current workspace template.

<Note>
  Use [Get prompt history](/en/api-reference/get-prompt-history) to find saved `promptId` values. Template sections missing from the saved version are included in this response with merged-read helper fields such as `defaultPrompt` and `custom`.
</Note>

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token containing your Fini workspace API key. Format: `Bearer fini_...` The key needs `read` scope.
</ParamField>

## Path parameters

<ParamField path="id" type="string" required>
  Agent ID that owns the prompt version. Use [List agents](/en/api-reference/list-agents) to get the `botId`.
</ParamField>

<ParamField path="promptId" type="string" required>
  Saved prompt version ID returned by [Get prompt history](/en/api-reference/get-prompt-history).
</ParamField>

## Response

Returns one merged [`Prompt`](/en/api-reference/prompts#prompt-object) object.

## Errors

<AccordionGroup>
  <Accordion title="400 Bad Request" icon="circle-exclamation">
    The agent ID or prompt version ID is not a valid UUID.
  </Accordion>

  <Accordion title="401 Unauthorized" icon="lock">
    The API key is missing, malformed, revoked, or invalid.
  </Accordion>

  <Accordion title="403 Forbidden" icon="shield-halved">
    The API key does not include the `read` scope required for this route.
  </Accordion>

  <Accordion title="404 Not Found" icon="ghost">
    The agent ID does not exist.
  </Accordion>

  <Accordion title="406 Not Acceptable" icon="circle-question">
    The agent belongs to a different workspace, or the prompt version does not belong to the agent in the path.
  </Accordion>

  <Accordion title="500 Internal Server Error" icon="triangle-exclamation">
    Fini failed while loading the prompt version or workspace template.
  </Accordion>
</AccordionGroup>
