Welcome
Whether you want to use Prompterella in your daily browsing or integrate it into your application, you've come to the right place.
Get the Bookmarklet
Instantly stage context from any webpage. Drag a button to your bookmarks bar and start using Prompterella without coding.
Configure Bookmarklet →
API Reference
Build on top of our platform. Integrate the staging API into your workflow and route users programmatically.
View API Docs →
How It Works
Prompterella acts as a universal router for AI prompts. Its power lies in its simplicity:
- Stage Context: Data is temporarily stored (2h TTL).
- Generate Link: A unique Gateway URL is created.
- 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;