API Reference
The Prezzi API allows you to programmatically access our library of elite prompts, agents, and workflows.
This API is RESTful and returns JSON responses. All API access requires a Pro or Enterprise subscription.
Authentication
Authenticate your requests by including your API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
You can manage your API keys in the Dashboard.
Items & Prompts
Retrieve individual prompts, workflows, or agent playbooks.
Get All Items
GET/api/v1/items
Returns a paginated list of items.
Parameters
limit(optional): Number of items to return (default: 20, max: 100).cursor(optional): Pagination cursor.category(optional): Filter by category slug.
Get Item Details
GET/api/v1/items/:slug
Returns full content (including prompt text/JSON) for a specific item.
Rate Limiting
API access is subject to rate limits to ensure fair usage:
- Pro Plan: 1,000 requests / hour
- Enterprise Plan: 10,000 requests / hour
If you exceed the limit, you will receive a 429 Too Many Requests response.