/
$ 0,00Entrar

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

Endpoints

GET/api/agents

List 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, rating
searchstringSearch agents by name or description
pagenumberPage number (default: 1)
limitnumberResults per page (default: 20)
GET/api/agents/:slug

Get a single agent by slug with reviews

Parameters

slugstringrequiredAgent slug identifier
POST/api/search

AI-powered semantic search across all agents

Parameters

querystringrequiredSearch query (supports PT, ES, EN)
limitnumberMax results (default: 5)
GET/api/collections

List 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.