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

# Prompt Bank: AI Prompt Management & Generation API

> Prompt Bank is a REST API for creating, organizing, and running AI image and video generations. Store prompts in vaults and generate media at scale.

Welcome to Prompt Bank — the agent-friendly REST API for creating, organizing, and running AI image and video generations. Store your best prompts in shareable vaults, trigger generations programmatically, and build AI media workflows that scale.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Create your first prompt and queue an AI generation in under five minutes.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Explore every endpoint, request parameter, and response schema.
  </Card>

  <Card title="Guides" icon="book" href="/guides/manage-prompts">
    Step-by-step guides for managing prompts, vaults, and generations.
  </Card>

  <Card title="Introduction" icon="lightbulb" href="/introduction">
    Understand how prompts, vaults, and generations work together.
  </Card>
</CardGroup>

## Get up and running

Follow these three steps to make your first Prompt Bank API call.

<Steps>
  <Step title="Create an account">
    Sign up for a free account at [promptbank.club](https://www.promptbank.club). Your account gives you access to the dashboard, where you can manage prompts, vaults, and API keys.
  </Step>

  <Step title="Generate an API key">
    Open your account settings at [promptbank.club](https://www.promptbank.club) and navigate to the **API Keys** section. Click **Create API key**, give it a name, and copy the key — it is only shown once.
  </Step>

  <Step title="Make your first API call">
    Pass your key as a Bearer token in the `Authorization` header of every request. Try listing your prompts to confirm everything is working:

    ```bash theme={null}
    curl https://www.promptbank.club/api/v1/prompts \
      -H "Authorization: Bearer pb_live_..."
    ```
  </Step>
</Steps>
