PromptVault

Developer API Access

Programmatic REST endpoint query layer targeting our library of 50,000+ optimized AI prompts, tools, and categories.

Developer Basic

$29/month

1,000 requests / month

  • Search & Filter endpoints
  • Standard response format
  • Email support
  • 1 Developer API Key

Developer Pro

$99/month

10,000 requests / month

  • All Basic features
  • Priority endpoint routing
  • Support SLAs
  • 5 Developer API Keys

Enterprise

$299/month

Unlimited requests

  • Unrestricted requests
  • Dedicated server clusters
  • Slack developer channels
  • Unlimited API Keys

API Reference Guide

Endpoint: Retrieve Prompts List

GET/api/v1/prompts

Required Headers:

x-promptvault-key: your_api_key_here

Query Parameters:

  • q (string) — Search terms matching title or tags.
  • tool (string) — AI tool slug (e.g. chatgpt).
  • type (string) — Format type (text, image, video).
  • limit (number) — Count (default: 10, max: 100).
Fetch Code Example (JavaScript)
const response = await fetch('https://promptvault.com/api/v1/prompts?q=cold+email&tool=chatgpt', {
  headers: {
    'x-promptvault-key': 'your_developer_key'
  }
});
const data = await response.json();
console.log(data.prompts);