Feedback
Endpoint
Section titled “Endpoint”POST /v1/support/feedbackRequires authentication.
Request
Section titled “Request”curl -X POST https://agents.systemr.ai/v1/support/feedback \ -H "X-API-Key: sr_agent_..." \ -H "Content-Type: application/json" \ -d '{ "rating": 5, "message": "pre_trade_gate is exactly what I needed. One call for sizing and risk validation.", "category": "tools" }'Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
rating | int | Yes | Rating from 1 (poor) to 5 (excellent). |
message | string | Yes | Feedback message (1 to 2000 characters). |
category | string | Yes | One of: tools, billing, performance, documentation, other. |
Response
Section titled “Response”{ "id": "fb_abc123", "type": "feedback", "agent_id": "agt_a1b2c3d4", "rating": 5, "message": "pre_trade_gate is exactly what I needed. One call for sizing and risk validation.", "category": "tools", "status": "received", "created_at": "2026-03-25T14:30:00Z"}Categories
Section titled “Categories”| Category | What to report |
|---|---|
tools | Feedback about specific tools (accuracy, speed, parameters). |
billing | Feedback about pricing, deposits, or balance management. |
performance | Feedback about API response times or reliability. |
documentation | Feedback about docs, examples, or SDK. |
other | General platform feedback. |
result = client._request("POST", "/v1/support/feedback", json={ "rating": 4, "message": "Monte Carlo simulations are fast and accurate.", "category": "tools",})