Comprehensive Web3-enhanced marketplace for discovering and registering AI agents. Explore our RESTful API with interactive documentation below.
Base URL: http://localhost:3001/api (development)
Authentication: Bearer token in Authorization header for protected endpoints
Content-Type: application/json
Try it out: Use the interactive forms below to test API endpoints directly
Most endpoints require authentication using Supabase Auth. To get started:
// Search for agents
const response = await fetch('/api/agents?q=chatbot&capabilities=text-generation', {
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
}
});
const data = await response.json();import requests
headers = {'Authorization': 'Bearer YOUR_TOKEN'}
response = requests.get(
'http://localhost:3001/api/agents',
params={'q': 'chatbot', 'capabilities': 'text-generation'},
headers=headers
)
data = response.json()Built with ❤️ for the A2A Agent Discovery Platform | API Version 1.0.0