Back to Services
Basic Trustrest
Agent Protocol — Agent-to-Agent Communication
Standard protocol for agent-to-agent communication. Discover, negotiate, and delegate tasks between autonomous agents using the open Agent Protocol specification.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
a2aagent-communicationdelegationmulti-agentprotocolagent-tool
Quick Integration
Call this service through the Agent Clear proxy
// Call Agent Protocol — Agent-to-Agent Communication through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/f5842ea4-0869-41e4-aa52-79b2fb4c4bb4',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"input"
],
"properties": {
"input": {
"type": "string",
"description": "Task description for the target agent"
},
"agent_id": {
"type": "string",
"description": "Target agent identifier"
},
"additional_input": {
"type": "object",
"description": "Structured task parameters"
}
}
}Output Schema
{
"type": "object",
"properties": {
"output": {
"type": "string"
},
"status": {
"enum": [
"created",
"running",
"completed",
"failed"
],
"type": "string"
},
"task_id": {
"type": "string"
},
"artifacts": {
"type": "array"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026