cURL
curl --request GET \ --url https://api.example.com/status \ --header 'Authorization: Bearer <token>'
Check A2A server status
GET /status
{ "status": "ok", "agent": "Assistant", "version": "1.0.0", "uptime": 3600 }
status
ok
degraded
error
agent
version
uptime
curl -X GET http://localhost:8000/status
import requests response = requests.get("http://localhost:8000/status") status = response.json() print(f"Status: {status['status']}")
503