API Endpoints
Deploy API: A2A Server
A2A protocol endpoints for agent-to-agent communication
POST
Deploy API: A2A Server
A2A API
A2A (Agent-to-Agent) protocol endpoints for agents deployed viaA2A(agent).get_router().
Base URL + Playground
http://localhost:8000
Endpoints
GET /.well-known/agent.json
Retrieve the Agent Card for discovery.No parameters required.
GET /status
Check server status.No parameters required.
POST /a2a
Send JSON-RPC messages to the agent.JSON-RPC version (must be “2.0”)
A2A method name (message/send)
Request ID
Message role (“user”)
Message parts array
Message Part Types
| Type | Fields | Description |
|---|---|---|
text | text | Plain text content |
file | uri, mimeType | File attachment |
Errors
A2A errors follow JSON-RPC 2.0 format:| Code | Message |
|---|---|
-32700 | Parse error |
-32600 | Invalid request |
-32601 | Method not found |
-32602 | Invalid params |
-32603 | Internal error |
Related
- A2A Server - Deploy agents as A2A server
- AGUI API - AG-UI protocol endpoints
- Agents API - HTTP REST endpoints
Deploy API: A2A Server

