Documentazione REST API completa.
URL baseAutenticazioneRisposte JSONTutte le richieste richiedono chiave API come Bearer token.
// Header Authorization: Bearer your-api-token
Mantieni la chiave segreta. Mai nel codice client.
/api/agentsElenca agenti con metadati, valutazioni e prezzi.categorystringFilter by category (Development, Analytics, Legal, ...)searchstringSearch in name, description and tagsbackendstringFilter by compatible backend (e.g. openai, claude, ollama)pricingstringFilter: "free" or "paid"sortstringSort: popular, newest, rating (default: newest)pagenumberPage number (default: 1)limitnumberResults per page (1–50, default: 12){ agents: Agent[], total: number, page: number }/api/agents/:slugDettagli di un agente specifico.slugstringUnique agent slug (URL param){ ...AgentDetail, author: { id, name, username }, reviews: Review[] }/api/agents/:slug/reviewsRecensioni paginate di un agente.slugstringAgent slug (URL param)pagenumberPage number (default: 1)limitnumberResults per page (1–50, default: 10){ reviews: Review[], total: number, page: number }/api/agents/:slug/similarGet similar agents from the same category.slugstringAgent slug (URL param){ agents: Agent[] }/api/agents/:slug/installInstalla agente a pagamento. Deduce dal saldo.slugstringAgent slug (URL param)backendstringTarget backend (default: "openai"){ success: boolean, message: string, config: InstallConfig }/api/agents/install-freeInstalla agente gratuito. Auth richiesta.agentSlugstringAgent slug (body)emailstringEmail for delivery (body){ ok: boolean }/api/agents/:slug/reviews🔒Invia recensione per agente installato.ratingnumberRating 1–5 (required)commentstringReview text (optional){ id, rating, comment, agentId, userId, createdAt }/api/payments/wallet🔒Saldo e cronologia transazioni.{ balance, totalEarned, totalWithdrawn, available, stripeAccountStatus }id: stringslug: stringname: stringdescription: stringicon: string | nullcategory: stringagentType: "prompt_based" | "app_ui"compatible: string[]tags: string[]pricing: { type: "one_time", amount?: number }rating: numberinstalls: numberisFeatured: booleancreatedAt: string (ISO 8601)author: { id: string, name: string }
id: stringrating: number (1–5)comment: string | nullagentId: stringuserId: stringuser: { name, username, avatarUrl }createdAt: string (ISO 8601)