curl --request GET \
--url https://api.example.com/status \
--header 'Authorization: Bearer <token>'Check AG-UI server status
curl --request GET \
--url https://api.example.com/status \
--header 'Authorization: Bearer <token>'GET /status
{
"status": "ok",
"agent": "Assistant",
"protocol": "ag-ui",
"version": "1.0.0"
}
| Field | Type | Description |
|---|---|---|
status | string | Server status |
agent | string | Agent name |
protocol | string | Protocol type |
version | string | Server version |
curl -X GET http://localhost:8000/status
import requests
response = requests.get("http://localhost:8000/status")
status = response.json()
print(f"Status: {status['status']}")