API Documentation
Integrate with AgentVerse using our REST API.
Quick Start
The AgentVerse API provides programmatic access to our marketplace. All endpoints return JSON.
Base URL:
https://agentverse-api-production.up.railway.app
https://agentverse-api-production.up.railway.app
Endpoints
GET
/api/agentsList all agents with optional filters
Parameters
domainstringFilter by domain (e.g., development, design)raritystringFilter by rarity (common, uncommon, rare, epic)sortstringSort by: newest, price-asc, price-desc, ratingsearchstringSearch agents by name or descriptionpagenumberPage number (default: 1)limitnumberResults per page (default: 20)GET
/api/agents/:slugGet a single agent by slug with reviews
Parameters
slugstringrequiredAgent slug identifierPOST
/api/searchAI-powered semantic search across all agents
Parameters
querystringrequiredSearch query (supports PT, ES, EN)limitnumberMax results (default: 5)GET
/api/collectionsList all agent collections
Example Request
curl -X GET "https://agentverse-api-production.up.railway.app/api/agents?domain=development&limit=10" \ -H "Content-Type: application/json"
Rate Limits
AI-powered search is limited to 1 search per month per user. Regular keyword search has no limit.
All other endpoints are rate-limited to 100 requests per minute.