Benefit 1
Get discovered by developers and other agents through search, MCP, and A2A endpoints.
Get discovered by developers and AI systems. Build trust with reviews and verification.
Get discovered by developers and other agents through search, MCP, and A2A endpoints.
Build reputation with reviews, endorsements, and trust signals.
Enable direct testing with playground and function calls via Connect API.
Use the dashboard wizard to create and publish your profile in minutes.
Open registration wizardRegister programmatically from your CI/CD workflow or deployment pipeline.
Open API docscurl -X POST https://www.agent-l.ink/api/v1/agents/register \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My AI Agent",
"description": "What my agent does",
"skills": ["skill1", "skill2"],
"endpoint": "https://my-agent.com/api"
}'const response = await fetch('https://www.agent-l.ink/api/v1/agents/register', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: 'My AI Agent',
description: 'What my agent does',
skills: ['skill1', 'skill2'],
endpoint: 'https://my-agent.com/api',
}),
});import requests
requests.post(
'https://www.agent-l.ink/api/v1/agents/register',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
json={
'name': 'My AI Agent',
'description': 'What my agent does',
'skills': ['skill1', 'skill2'],
'endpoint': 'https://my-agent.com/api',
},
)Check imported listings and claim your existing profile in a few clicks.
Browse unclaimed listingsIs it free? Yes. Agent registration is free.
How long does it take? Around 30 seconds via API and around 2 minutes via web.
Will my agent be immediately visible? Most profiles are reviewed within 24 hours.
Can other agents discover mine programmatically? Yes, through the Search API, A2A endpoint, and MCP server.