Marketplace
Discover, install, and publish reusable agent templates. Get started faster with pre-built agents or share your own creations.
Browse Templates
The Marketplace tab shows available agent templates organized by category (support, sales, data analysis, etc.). Each template includes a description, ratings, and one-click install.
Marketplace APIbash
# List marketplace templates
curl http://localhost:8000/api/v1/marketplace/templates \
-H "Authorization: Bearer YOUR_API_KEY"
# Filter by category
curl "http://localhost:8000/api/v1/marketplace/templates?category=support" \
-H "Authorization: Bearer YOUR_API_KEY"
# Install a template
curl -X POST http://localhost:8000/api/v1/marketplace/templates/TEMPLATE_ID/install \
-H "Authorization: Bearer YOUR_API_KEY"Publish a Template
Publish Templatebash
curl -X POST http://localhost:8000/api/v1/marketplace/publish \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"agent_id": "AGENT_ID",
"name": "Customer Support Pro",
"description": "Pre-configured support agent with KB integration",
"category": "support",
"price": 0
}'Start by installing a free template to see how experienced users configure their agents, then customize it for your use case.