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

# Prompt Details

> Retrieves data for a specific prompt_id.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="prompt_id" type="string" required>
  The unique identifier for the prompt you want to retrieve.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Response status of the request.
</ResponseField>

<ResponseField name="prompt" type="object">
  An object containing parameters for the prompt.
</ResponseField>

<ResponseField name="prompt.id" type="string">
  The unique identifier of the prompt.
</ResponseField>

<ResponseField name="prompt.prompt" type="string">
  The prompt of the specific prompt\_id.
</ResponseField>

<ResponseField name="prompt.name" type="string">
  The name of the specific prompt\_id.
</ResponseField>

<ResponseField name="prompt.last_updated" type="string">
  The time of last update for the specific prompt\_id.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "prompt": {
        "id": "PT-aa8fb0ac-0014-43c0-9268-543522ce7e27",
        "prompt": "My Prompt",
        "name": "My First Prompt"
        "last_updated": "2024-05-12T22:52:49.004987+00:00",
    }
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
