Prompterella

Welcome

Whether you want to use Prompterella in your daily browsing or integrate it into your application, you've come to the right place.

How It Works

Prompterella acts as a universal router for AI prompts. Its power lies in its simplicity:

  1. Stage Context: Data is temporarily stored (2h TTL).
  2. Generate Link: A unique Gateway URL is created.
  3. Route User: The user visits the link and chooses their AI.
Quick Integration PreviewJavaScript
const response = await fetch('https://prompterella.com/api/v1/stage', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    prompt: 'Analyze this code for bugs',
    text: codeContent,
  })
});

const { gatewayUrl } = await response.json();
window.location.href = gatewayUrl;