> ## 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.

# Create Prompt

> Create and store a prompt for future use.

### Headers

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

### Body

<ParamField body="prompt" type="string" required>
  Prompt to store.
</ParamField>

<ParamField body="name" type="string">
  Name of prompt you want to store as reference.
</ParamField>

### Response

<ResponseField body="prompt" type="object">
  Prompt object.
</ResponseField>

<ResponseField body="prompt.prompt" type="string">
  Prompt to store.
</ResponseField>

<ResponseField body="prompt.name" type="string">
  Name of prompt you want to store as reference.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "prompt": {
      "prompt": "# Final Test",
      "name": "demo",
      "id": "PT-02b2ecdi-39f2-443f-8cb0-a6c854c65fc0"
    }
  }
  ```
</ResponseExample>

***

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